blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 410 | content_id stringlengths 40 40 | detected_licenses listlengths 0 51 | license_type stringclasses 2
values | repo_name stringlengths 5 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 80 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 132
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 9.45M | extension stringclasses 28
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 352 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3a041259ea4c0556056483b6288c59580bf485a1 | 0b5c89263be2308f4009b9c9d8342adac109975c | /gof-pattern/src/main/java/com/pointer/pattern/abstractfactory/CocaColaFactory.java | f79ce703eeac98e1ccf3465cd33abb5f7896b274 | [] | no_license | Volodymyr00/pointer-gof | afa98f61bca58ae5530216dd95e4ed198a4638ed | b4d0779b6a268cef0ee72648c305c78ffe32ac33 | refs/heads/master | 2021-05-20T02:57:51.744229 | 2020-04-07T12:13:55 | 2020-04-07T12:13:55 | 252,156,609 | 0 | 0 | null | 2020-04-01T11:33:49 | 2020-04-01T11:33:48 | null | UTF-8 | Java | false | false | 245 | java | package com.pointer.pattern.abstractfactory;
public class CocaColaFactory extends AbstractFactory {
Bottle createBottle() {
return new CocaColaBottle();
}
Water createWater() {
return new CocaColaWater();
}
}
| [
"Hc147852"
] | Hc147852 |
69291c3157753644b301a704d215a2412f5ab8c4 | 4b5e5c9a7a805f887654e2b828fb2a03969951a0 | /src/com/team11/kamisado/network/Client.java | 285b2245f86672ffc17e335f12abb76565e8e4a1 | [] | no_license | diyankomitov/kamisado | 69ab5b0533c6d427782e2b66ab402304aaa7aca5 | c73af620f90514017804f133c0041971100e63b3 | refs/heads/master | 2021-07-18T04:15:27.944866 | 2017-10-23T21:49:58 | 2017-10-23T21:49:58 | 108,043,587 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,217 | java | package com.team11.kamisado.network;
import com.team11.kamisado.util.Coordinates;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.net.Socket;
import java.net.SocketException;
public class Client {
private static final String SERVER_IP = "52.214.254.147";
private static final int SERVER_PORT = 5042;
private static Socket socket;
private static ObjectInputStream inputStream;
private static ObjectOutputStream outputStream;
private static boolean black;
private static String otherPlayerName;
public static boolean connectToServer(String name, boolean isHost, boolean isBlack, boolean isSpeed) {
try {
System.out.println("Trying to connect");
socket = new Socket(SERVER_IP, SERVER_PORT);
}
catch(IOException e) {
e.printStackTrace();
}
System.out.println("Connection made");
black = isBlack;
try {
outputStream = new ObjectOutputStream(socket.getOutputStream());
System.out.println("OS made");
outputStream.writeBoolean(isHost);
outputStream.flush();
System.out.println("isHost was sent");
outputStream.writeObject(name);
outputStream.flush();
System.out.println("name sent");
outputStream.writeBoolean(isSpeed);
outputStream.flush();
System.out.println("speed sent");
if(isHost) {
outputStream.writeBoolean(black);
outputStream.flush();
System.out.println("black sent");
}
}
catch(IOException e) {
e.printStackTrace();
}
System.out.println("waiting for opponent...");
try {
socket.setSoTimeout(10000);
inputStream = new ObjectInputStream(socket.getInputStream());
otherPlayerName = (String) inputStream.readObject();
System.out.println("Opponent is: " + otherPlayerName);
}
catch(IOException | ClassNotFoundException e) {
return false;
}
if(!isHost) {
try {
black = inputStream.readBoolean();
System.out.println("black received");
}
catch(IOException e) {
e.printStackTrace();
}
}
return true;
}
public static String getOtherPlayerName() {
return otherPlayerName;
}
public static boolean getBlack() {
return black;
}
public static void close() {
try {
outputStream.close();
inputStream.close();
socket.close();
}
catch(IOException e) {
e.printStackTrace();
}
}
public static Coordinates getCoordinates() {
try {
return (Coordinates) inputStream.readObject();
}
catch(IOException | ClassNotFoundException e) {
e.printStackTrace();
}
return null;
}
public static void sendCoordinates(Coordinates outputCoords) {
try {
outputStream.writeObject(new Coordinates(outputCoords));
outputStream.flush();
System.out.println("Coordinates were sent: " + outputCoords.getX() + " " + outputCoords.getY());
}
catch(IOException e) {
e.printStackTrace();
}
}
}
//
//
// new Thread(() -> {
// while(true) {
// Scanner scanner = new Scanner(System.in);
// System.out.println("Say something");
// String input = scanner.nextLine();
// System.out.println("You wrote something");
//
// if(input.equals("exit")) {
// System.out.println("Goodbye");
// System.exit(0);
// }
//
// try {
// outputStream = new ObjectOutputStream(socket.getOutputStream());
// System.out.println("OS made");
// outputStream.writeObject(input);
// System.out.println("Something was sent");
// }
// catch(IOException e) {
// e.printStackTrace();
// }
// }
// }).start();
//
//
// new Thread(() -> {
// while(true) {
// try {
// inputStream = new ObjectInputStream(socket.getInputStream());
// System.out.println("IS made");
// String output = (String) inputStream.readObject();
// System.out.println("'" + output + "'");
// }
// catch(IOException | ClassNotFoundException exception) {
// exception.printStackTrace();
// }
// }
// }).start();
// }
| [
"diyan.komitov.2015@uni.strath.ac.uk"
] | diyan.komitov.2015@uni.strath.ac.uk |
670d4bd2244e58a6bae81c4b1099390b1d07ad57 | 4378db37051e803d10c648dc2193d807d07fdd35 | /app/src/main/java/com/hhbgk/designpattern/singleton/HungryStaticConstant.java | 216bb4edae84c01a26d3f0bbda78c194b0739708 | [] | no_license | hhbgk/DesignPattern | 6bdf4400100768b3f640d54e085260f91e3814d5 | cdc7e81381d343fde77ce5becaa61a79cc235f36 | refs/heads/master | 2021-01-07T17:36:08.960233 | 2020-03-08T12:05:37 | 2020-03-08T12:05:37 | 241,764,239 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 618 | java | package com.hhbgk.designpattern.singleton;
/**
* 饿汉式(静态常量)
*
* 优点:写法简单,在类加载时就完成实例化,避免线程同步问题。
* 缺点:在类加载时就完成实例化,没有达到懒加载的效果,若始终没用过这个实例,则造成内存浪费。
* 结论:可用,但可能造成内存浪费。
*/
public class HungryStaticConstant {
private static final HungryStaticConstant instance = new HungryStaticConstant();
private HungryStaticConstant() {
}
public static HungryStaticConstant getInstance() {
return instance;
}
}
| [
"hhbjsj@163.com"
] | hhbjsj@163.com |
59a3e64cbfe22bfbf38f990734e958141e85485d | ad37734b07d002e467810f94bfd3695e5903bdae | /src/main/java/com/jason/service/impl/TagServiceImpl.java | 1f2579c0c7b6cd13f3102db30b8294a6285f6fea | [] | no_license | Sweetheartman/blog | 0812837f2cc9edc9c79fb1c20c5f2d555b4dc253 | e01e014aaca1bd816d5361b7babf512b65adf297 | refs/heads/master | 2022-12-04T18:41:27.452496 | 2020-08-15T12:57:58 | 2020-08-15T12:57:58 | 287,742,623 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,149 | java | package com.jason.service.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.jason.dao.TagDao;
import com.jason.exception.CustomizeErrorCode;
import com.jason.exception.CustomizeException;
import com.jason.model.entity.Category;
import com.jason.model.entity.Tag;
import com.jason.service.TagService;
import org.hibernate.validator.internal.constraintvalidators.bv.time.futureorpresent.FutureOrPresentValidatorForReadableInstant;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.ArrayList;
import java.util.List;
@Service
public class TagServiceImpl implements TagService {
@Autowired
private TagDao tagDao;
@Override
public List<Integer> getTagsId(Tag[] tags) {
return tagDao.getTagsId(tags) ;
}
/**
* 如果该标签不存在则添加标签
* @param tags
*/
@Transactional
@Override
public void saveTags(Tag[] tags) {
List<Tag> all = tagDao.getAll();
List<Tag> insertList = new ArrayList<>() ;
for (Tag tag : tags) {
boolean flag = true;
for (Tag value : all) {
if (tag.getName().equals(value.getName())) {
flag = false;
break;
}
}
if (flag) {
insertList.add(tag);
}
}
if(!insertList.isEmpty()){
tagDao.saveList(insertList);
}
}
@Transactional
@Override
public int saveTag(Tag tag) {
return tagDao.save(tag);
}
@Transactional
@Override
public int removeTag(int[] ids) {
return tagDao.remove(ids);
}
@Transactional
@Override
public int updateTag(Tag tag) {
return tagDao.update(tag);
}
@Override
public Tag getTag(int id) {
Tag one = tagDao.getOne(id);
if (one==null){
throw new CustomizeException(CustomizeErrorCode.TAG_NOT_FOUND);
}
return one;
}
@Override
public List<Tag> getTagList(Integer currentPage, Integer pageSize, Tag tag) {
List<Tag> list = tagDao.getList((currentPage - 1) * pageSize, pageSize, tag);
if (list==null){
throw new CustomizeException(CustomizeErrorCode.TAG_NOT_FOUND);
}
return list;
}
@Override
public int countTag(Tag tag) {
return tagDao.count(tag);
}
@Override
public Tag getTagByName(String tagName) {
return tagDao.getByName(tagName);
}
@Override
public List<Tag> getAllTag() {
return tagDao.getAll();
}
@Override
public PageInfo<Tag> getTags(Integer page, Integer size) {
PageHelper.startPage(page,size);
List<Tag> tags = tagDao.getTages();
return new PageInfo<>(tags);
}
@Override
public void addTag(Tag tag) {
tagDao.addTag(tag);
}
@Override
public void deleteTagById(Integer id) {
tagDao.deleteTagById(id);
}
}
| [
"843822062@qq.com"
] | 843822062@qq.com |
12254f203bfeac7b02256e8d256477cd7216f29f | d9477e8e6e0d823cf2dec9823d7424732a7563c4 | /jEdit/branches/plugin_packages/org/gjt/sp/jedit/buffer/JEditBuffer.java | cecda924acef153af259894b05f2d3c1433d3f56 | [] | no_license | RobertHSchmidt/jedit | 48fd8e1e9527e6f680de334d1903a0113f9e8380 | 2fbb392d6b569aefead29975b9be12e257fbe4eb | refs/heads/master | 2023-08-30T02:52:55.676638 | 2018-07-11T13:28:01 | 2018-07-11T13:28:01 | 140,587,948 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 63,067 | java | /*
* JEditBuffer.java - jEdit buffer
* :tabSize=8:indentSize=8:noTabs=false:
* :folding=explicit:collapseFolds=1:
*
* Copyright (C) 1998, 2005 Slava Pestov
* Portions copyright (C) 1999, 2000 mike dillon
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package org.gjt.sp.jedit.buffer;
//{{{ Imports
import org.gjt.sp.jedit.Debug;
import org.gjt.sp.jedit.Mode;
import org.gjt.sp.jedit.TextUtilities;
import org.gjt.sp.jedit.indent.IndentAction;
import org.gjt.sp.jedit.indent.IndentRule;
import org.gjt.sp.jedit.syntax.*;
import org.gjt.sp.jedit.textarea.TextArea;
import org.gjt.sp.util.IntegerArray;
import org.gjt.sp.util.Log;
import org.gjt.sp.util.StandardUtilities;
import javax.swing.text.Position;
import javax.swing.text.Segment;
import java.awt.*;
import java.util.*;
import java.util.List;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import java.util.regex.Pattern;
//}}}
/**
* A <code>JEditBuffer</code> represents the contents of an open text
* file as it is maintained in the computer's memory (as opposed to
* how it may be stored on a disk).<p>
*
* This class is partially thread-safe, however you must pay attention to two
* very important guidelines:
* <ul>
* <li>Changes to a buffer can only be made from the AWT thread.
* <li>When accessing the buffer from another thread, you must
* grab a read lock if you plan on performing more than one call, to ensure that
* the buffer contents are not changed by the AWT thread for the duration of the
* lock. Only methods whose descriptions specify thread safety can be invoked
* from other threads.
* </ul>
*
* @author Slava Pestov
* @version $Id$
*
* @since jEdit 4.3pre3
*/
public class JEditBuffer
{
/**
* Line separator property.
*/
public static final String LINESEP = "lineSeparator";
/**
* Character encoding used when loading and saving.
* @since jEdit 3.2pre4
*/
public static final String ENCODING = "encoding";
//{{{ JEditBuffer constructors
public JEditBuffer(Map props)
{
bufferListeners = new Vector<Listener>();
lock = new ReentrantReadWriteLock();
contentMgr = new ContentManager();
lineMgr = new LineManager();
positionMgr = new PositionManager(this);
undoMgr = new UndoManager(this);
integerArray = new IntegerArray();
propertyLock = new Object();
properties = new HashMap<Object, PropValue>();
//{{{ need to convert entries of 'props' to PropValue instances
Set<Map.Entry> set = props.entrySet();
for (Map.Entry entry : set)
{
properties.put(entry.getKey(),new PropValue(entry.getValue(),false));
} //}}}
// fill in defaults for these from system properties if the
// corresponding buffer.XXX properties not set
if(getProperty(ENCODING) == null)
properties.put(ENCODING,new PropValue(System.getProperty("file.encoding"),false));
if(getProperty(LINESEP) == null)
properties.put(LINESEP,new PropValue(System.getProperty("line.separator"),false));
}
/**
* Create a new JEditBuffer.
* It is used by independent textarea only
*/
public JEditBuffer()
{
bufferListeners = new Vector<Listener>();
lock = new ReentrantReadWriteLock();
contentMgr = new ContentManager();
lineMgr = new LineManager();
positionMgr = new PositionManager(this);
undoMgr = new UndoManager(this);
integerArray = new IntegerArray();
propertyLock = new Object();
properties = new HashMap<Object, PropValue>();
properties.put("wrap",new PropValue("none",false));
properties.put("folding",new PropValue("none",false));
tokenMarker = new TokenMarker();
tokenMarker.addRuleSet(new ParserRuleSet("text","MAIN"));
setTokenMarker(tokenMarker);
loadText(null,null);
// corresponding buffer.XXX properties not set
if(getProperty(ENCODING) == null)
properties.put(ENCODING,new PropValue(System.getProperty("file.encoding"),false));
if(getProperty(LINESEP) == null)
properties.put(LINESEP,new PropValue(System.getProperty("line.separator"),false));
setFoldHandler(new DummyFoldHandler());
} //}}}
//{{{ Flags
//{{{ isDirty() method
/**
* Returns whether there have been unsaved changes to this buffer.
* This method is thread-safe.
*/
public boolean isDirty()
{
return dirty;
} //}}}
//{{{ isLoading() method
public boolean isLoading()
{
return loading;
} //}}}
//{{{ setLoading() method
public void setLoading(boolean loading)
{
this.loading = loading;
} //}}}
//{{{ isPerformingIO() method
/**
* Returns true if the buffer is currently performing I/O.
* This method is thread-safe.
* @since jEdit 2.7pre1
*/
public boolean isPerformingIO()
{
return isLoading() || io;
} //}}}
//{{{ setPerformingIO() method
/**
* Returns true if the buffer is currently performing I/O.
* This method is thread-safe.
* @since jEdit 2.7pre1
*/
public void setPerformingIO(boolean io)
{
this.io = io;
} //}}}
//{{{ isEditable() method
/**
* Returns true if this file is editable, false otherwise. A file may
* become uneditable if it is read only, or if I/O is in progress.
* This method is thread-safe.
* @since jEdit 2.7pre1
*/
public boolean isEditable()
{
return !(isReadOnly() || isPerformingIO());
} //}}}
//{{{ isReadOnly() method
/**
* Returns true if this file is read only, false otherwise.
* This method is thread-safe.
*/
public boolean isReadOnly()
{
return readOnly || readOnlyOverride;
} //}}}
//{{{ setReadOnly() method
/**
* Sets the read only flag.
* @param readOnly The read only flag
*/
public void setReadOnly(boolean readOnly)
{
readOnlyOverride = readOnly;
} //}}}
//{{{ setDirty() method
/**
* Sets the 'dirty' (changed since last save) flag of this buffer.
*/
public void setDirty(boolean d)
{
boolean editable = isEditable();
if(d)
{
if(editable)
dirty = true;
}
else
{
dirty = false;
// fixes dirty flag not being reset on
// save/insert/undo/redo/undo
if(!isUndoInProgress())
{
// this ensures that undo can clear the dirty flag properly
// when all edits up to a save are undone
undoMgr.resetClearDirty();
}
}
} //}}}
//}}}
//{{{ Thread safety
//{{{ readLock() method
/**
* The buffer is guaranteed not to change between calls to
* {@link #readLock()} and {@link #readUnlock()}.
*/
public void readLock()
{
lock.readLock().lock();
} //}}}
//{{{ readUnlock() method
/**
* The buffer is guaranteed not to change between calls to
* {@link #readLock()} and {@link #readUnlock()}.
*/
public void readUnlock()
{
lock.readLock().unlock();
} //}}}
//{{{ writeLock() method
/**
* Attempting to obtain read lock will block between calls to
* {@link #writeLock()} and {@link #writeUnlock()}.
*/
public void writeLock()
{
lock.writeLock().lock();
} //}}}
//{{{ writeUnlock() method
/**
* Attempting to obtain read lock will block between calls to
* {@link #writeLock()} and {@link #writeUnlock()}.
*/
public void writeUnlock()
{
lock.writeLock().unlock();
} //}}}
//}}}
//{{{ Line offset methods
//{{{ getLength() method
/**
* Returns the number of characters in the buffer. This method is thread-safe.
*/
public int getLength()
{
// no need to lock since this just returns a value and that's it
return contentMgr.getLength();
} //}}}
//{{{ getLineCount() method
/**
* Returns the number of physical lines in the buffer.
* This method is thread-safe.
* @since jEdit 3.1pre1
*/
public int getLineCount()
{
// no need to lock since this just returns a value and that's it
return lineMgr.getLineCount();
} //}}}
//{{{ getLineOfOffset() method
/**
* Returns the line containing the specified offset.
* This method is thread-safe.
* @param offset The offset
* @since jEdit 4.0pre1
*/
public int getLineOfOffset(int offset)
{
try
{
readLock();
if(offset < 0 || offset > getLength())
throw new ArrayIndexOutOfBoundsException(offset);
return lineMgr.getLineOfOffset(offset);
}
finally
{
readUnlock();
}
} //}}}
//{{{ getLineStartOffset() method
/**
* Returns the start offset of the specified line.
* This method is thread-safe.
* @param line The line
* @return The start offset of the specified line
* @since jEdit 4.0pre1
*/
public int getLineStartOffset(int line)
{
try
{
readLock();
if(line < 0 || line >= lineMgr.getLineCount())
throw new ArrayIndexOutOfBoundsException(line);
else if(line == 0)
return 0;
return lineMgr.getLineEndOffset(line - 1);
}
finally
{
readUnlock();
}
} //}}}
//{{{ getLineEndOffset() method
/**
* Returns the end offset of the specified line.
* This method is thread-safe.
* @param line The line
* @return The end offset of the specified line
* invalid.
* @since jEdit 4.0pre1
*/
public int getLineEndOffset(int line)
{
try
{
readLock();
if(line < 0 || line >= lineMgr.getLineCount())
throw new ArrayIndexOutOfBoundsException(line);
return lineMgr.getLineEndOffset(line);
}
finally
{
readUnlock();
}
} //}}}
//{{{ getLineLength() method
/**
* Returns the length of the specified line.
* This method is thread-safe.
* @param line The line
* @since jEdit 4.0pre1
*/
public int getLineLength(int line)
{
try
{
readLock();
return getLineEndOffset(line)
- getLineStartOffset(line) - 1;
}
finally
{
readUnlock();
}
} //}}}
//{{{ getPriorNonEmptyLine() method
/**
* Auto indent needs this.
*/
public int getPriorNonEmptyLine(int lineIndex)
{
int returnValue = -1;
if (!mode.getIgnoreWhitespace())
{
return lineIndex - 1;
}
for(int i = lineIndex - 1; i >= 0; i--)
{
Segment seg = new Segment();
getLineText(i,seg);
if(seg.count != 0)
returnValue = i;
for(int j = 0; j < seg.count; j++)
{
char ch = seg.array[seg.offset + j];
if(!Character.isWhitespace(ch))
return i;
}
}
// didn't find a line that contains non-whitespace chars
// so return index of prior whitespace line
return returnValue;
} //}}}
//}}}
//{{{ Text getters and setters
//{{{ getLineText() methods
/**
* Returns the text on the specified line.
* This method is thread-safe.
* @param line The line
* @return The text, or null if the line is invalid
* @since jEdit 4.0pre1
*/
public String getLineText(int line)
{
if(line < 0 || line >= lineMgr.getLineCount())
throw new ArrayIndexOutOfBoundsException(line);
try
{
readLock();
int start = line == 0 ? 0 : lineMgr.getLineEndOffset(line - 1);
int end = lineMgr.getLineEndOffset(line);
return getText(start,end - start - 1);
}
finally
{
readUnlock();
}
}
/**
* Returns the specified line in a <code>Segment</code>.<p>
*
* Using a <classname>Segment</classname> is generally more
* efficient than using a <classname>String</classname> because it
* results in less memory allocation and array copying.<p>
*
* This method is thread-safe.
*
* @param line The line
* @since jEdit 4.0pre1
*/
public void getLineText(int line, Segment segment)
{
if(line < 0 || line >= lineMgr.getLineCount())
throw new ArrayIndexOutOfBoundsException(line);
try
{
readLock();
int start = line == 0 ? 0 : lineMgr.getLineEndOffset(line - 1);
int end = lineMgr.getLineEndOffset(line);
getText(start,end - start - 1,segment);
}
finally
{
readUnlock();
}
} //}}}
//{{{ getLineSegment() method
/**
* Returns the text on the specified line.
* This method is thread-safe.
*
* @param line The line index.
* @return The text, or null if the line is invalid
*
* @since jEdit 4.3pre15
*/
public CharSequence getLineSegment(int line)
{
if(line < 0 || line >= lineMgr.getLineCount())
throw new ArrayIndexOutOfBoundsException(line);
try
{
readLock();
int start = line == 0 ? 0 : lineMgr.getLineEndOffset(line - 1);
int end = lineMgr.getLineEndOffset(line);
return getSegment(start,end - start - 1);
}
finally
{
readUnlock();
}
} //}}}
//{{{ getText() methods
/**
* Returns the specified text range. This method is thread-safe.
* @param start The start offset
* @param length The number of characters to get
*/
public String getText(int start, int length)
{
try
{
readLock();
if(start < 0 || length < 0
|| start + length > contentMgr.getLength())
throw new ArrayIndexOutOfBoundsException(start + ":" + length);
return contentMgr.getText(start,length);
}
finally
{
readUnlock();
}
}
/**
* Returns the specified text range in a <code>Segment</code>.<p>
*
* Using a <classname>Segment</classname> is generally more
* efficient than using a <classname>String</classname> because it
* results in less memory allocation and array copying.<p>
*
* This method is thread-safe.
*
* @param start The start offset
* @param length The number of characters to get
* @param seg The segment to copy the text to
*/
public void getText(int start, int length, Segment seg)
{
try
{
readLock();
if(start < 0 || length < 0
|| start + length > contentMgr.getLength())
throw new ArrayIndexOutOfBoundsException(start + ":" + length);
contentMgr.getText(start,length,seg);
}
finally
{
readUnlock();
}
} //}}}
//{{{ getSegment() method
/**
* Returns the specified text range. This method is thread-safe.
* It doesn't copy the text
*
* @param start The start offset
* @param length The number of characters to get
*
* @return a CharSequence that contains the text wanted text
* @since jEdit 4.3pre15
*/
public CharSequence getSegment(int start, int length)
{
try
{
readLock();
if(start < 0 || length < 0
|| start + length > contentMgr.getLength())
throw new ArrayIndexOutOfBoundsException(start + ":" + length);
return contentMgr.getSegment(start,length);
}
finally
{
readUnlock();
}
} //}}}
//{{{ insert() methods
/**
* Inserts a string into the buffer.
* @param offset The offset
* @param str The string
* @since jEdit 4.0pre1
*/
public void insert(int offset, String str)
{
if(str == null)
return;
int len = str.length();
if(len == 0)
return;
if(isReadOnly())
throw new RuntimeException("buffer read-only");
try
{
writeLock();
if(offset < 0 || offset > contentMgr.getLength())
throw new ArrayIndexOutOfBoundsException(offset);
contentMgr.insert(offset,str);
integerArray.clear();
for(int i = 0; i < len; i++)
{
if(str.charAt(i) == '\n')
integerArray.add(i + 1);
}
if(!undoInProgress)
{
undoMgr.contentInserted(offset,len,str,!dirty);
}
contentInserted(offset,len,integerArray);
}
finally
{
writeUnlock();
}
}
/**
* Inserts a string into the buffer.
* @param offset The offset
* @param seg The segment
* @since jEdit 4.0pre1
*/
public void insert(int offset, Segment seg)
{
if(seg.count == 0)
return;
if(isReadOnly())
throw new RuntimeException("buffer read-only");
try
{
writeLock();
if(offset < 0 || offset > contentMgr.getLength())
throw new ArrayIndexOutOfBoundsException(offset);
contentMgr.insert(offset,seg);
integerArray.clear();
for(int i = 0; i < seg.count; i++)
{
if(seg.array[seg.offset + i] == '\n')
integerArray.add(i + 1);
}
if(!undoInProgress)
{
undoMgr.contentInserted(offset,seg.count,
seg.toString(),!dirty);
}
contentInserted(offset,seg.count,integerArray);
}
finally
{
writeUnlock();
}
} //}}}
//{{{ remove() method
/**
* Removes the specified rang efrom the buffer.
* @param offset The start offset
* @param length The number of characters to remove
*/
public void remove(int offset, int length)
{
if(length == 0)
return;
if(isReadOnly())
throw new RuntimeException("buffer read-only");
try
{
transaction = true;
writeLock();
if(offset < 0 || length < 0
|| offset + length > contentMgr.getLength())
throw new ArrayIndexOutOfBoundsException(offset + ":" + length);
int startLine = lineMgr.getLineOfOffset(offset);
int endLine = lineMgr.getLineOfOffset(offset + length);
int numLines = endLine - startLine;
if(!undoInProgress && !loading)
{
undoMgr.contentRemoved(offset,length,
getText(offset,length),
!dirty);
}
firePreContentRemoved(startLine,offset,numLines,length);
contentMgr.remove(offset,length);
lineMgr.contentRemoved(startLine,offset,numLines,length);
positionMgr.contentRemoved(offset,length);
setDirty(true);
fireContentRemoved(startLine,offset,numLines,length);
/* otherwise it will be delivered later */
if(!undoInProgress && !insideCompoundEdit())
fireTransactionComplete();
}
finally
{
transaction = false;
writeUnlock();
}
} //}}}
//}}}
//{{{ Indentation
//{{{ removeTrailingWhiteSpace() method
/**
* Removes trailing whitespace from all lines in the specified list.
* @param lines The line numbers
* @since jEdit 3.2pre1
*/
public void removeTrailingWhiteSpace(int[] lines)
{
try
{
beginCompoundEdit();
for(int i = 0; i < lines.length; i++)
{
int pos, lineStart, lineEnd, tail;
Segment seg = new Segment();
getLineText(lines[i],seg);
// blank line
if (seg.count == 0) continue;
lineStart = seg.offset;
lineEnd = seg.offset + seg.count - 1;
for (pos = lineEnd; pos >= lineStart; pos--)
{
if (!Character.isWhitespace(seg.array[pos]))
break;
}
tail = lineEnd - pos;
// no whitespace
if (tail == 0) continue;
remove(getLineEndOffset(lines[i]) - 1 - tail,tail);
}
}
finally
{
endCompoundEdit();
}
} //}}}
//{{{ shiftIndentLeft() method
/**
* Shifts the indent of each line in the specified list to the left.
* @param lines The line numbers
* @since jEdit 3.2pre1
*/
public void shiftIndentLeft(int[] lines)
{
int tabSize = getTabSize();
int indentSize = getIndentSize();
boolean noTabs = getBooleanProperty("noTabs");
try
{
beginCompoundEdit();
for(int i = 0; i < lines.length; i++)
{
int lineStart = getLineStartOffset(lines[i]);
CharSequence line = getLineSegment(lines[i]);
int whiteSpace = StandardUtilities
.getLeadingWhiteSpace(line);
if(whiteSpace == 0)
continue;
int whiteSpaceWidth = Math.max(0,StandardUtilities
.getLeadingWhiteSpaceWidth(line,tabSize)
- indentSize);
insert(lineStart + whiteSpace,StandardUtilities
.createWhiteSpace(whiteSpaceWidth,
noTabs ? 0 : tabSize));
remove(lineStart,whiteSpace);
}
}
finally
{
endCompoundEdit();
}
} //}}}
//{{{ shiftIndentRight() method
/**
* Shifts the indent of each line in the specified list to the right.
* @param lines The line numbers
* @since jEdit 3.2pre1
*/
public void shiftIndentRight(int[] lines)
{
try
{
beginCompoundEdit();
int tabSize = getTabSize();
int indentSize = getIndentSize();
boolean noTabs = getBooleanProperty("noTabs");
for(int i = 0; i < lines.length; i++)
{
int lineStart = getLineStartOffset(lines[i]);
CharSequence line = getLineSegment(lines[i]);
int whiteSpace = StandardUtilities
.getLeadingWhiteSpace(line);
// silly usability hack
//if(lines.length != 1 && whiteSpace == 0)
// continue;
int whiteSpaceWidth = StandardUtilities
.getLeadingWhiteSpaceWidth(
line,tabSize) + indentSize;
insert(lineStart + whiteSpace,StandardUtilities
.createWhiteSpace(whiteSpaceWidth,
noTabs ? 0 : tabSize));
remove(lineStart,whiteSpace);
}
}
finally
{
endCompoundEdit();
}
} //}}}
//{{{ indentLines() methods
/**
* Indents all specified lines.
* @param start The first line to indent
* @param end The last line to indent
* @since jEdit 3.1pre3
*/
public void indentLines(int start, int end)
{
try
{
beginCompoundEdit();
for(int i = start; i <= end; i++)
indentLine(i,true);
}
finally
{
endCompoundEdit();
}
}
/**
* Indents all specified lines.
* @param lines The line numbers
* @since jEdit 3.2pre1
*/
public void indentLines(int[] lines)
{
try
{
beginCompoundEdit();
for(int i = 0; i < lines.length; i++)
indentLine(lines[i],true);
}
finally
{
endCompoundEdit();
}
} //}}}
//{{{ indentLine() methods
/**
* @deprecated Use {@link #indentLine(int,boolean)} instead.
*/
@Deprecated
public boolean indentLine(int lineIndex, boolean canIncreaseIndent,
boolean canDecreaseIndent)
{
return indentLine(lineIndex,canDecreaseIndent);
}
/**
* Indents the specified line.
* @param lineIndex The line number to indent
* @param canDecreaseIndent If true, the indent can be decreased as a
* result of this. Set this to false for Tab key.
* @return true If indentation took place, false otherwise.
* @since jEdit 4.2pre2
*/
public boolean indentLine(int lineIndex, boolean canDecreaseIndent)
{
int[] whitespaceChars = new int[1];
int currentIndent = getCurrentIndentForLine(lineIndex,
whitespaceChars);
int prevLineIndex = getPriorNonEmptyLine(lineIndex);
int prevLineIndent = (prevLineIndex == -1) ? 0 :
StandardUtilities.getLeadingWhiteSpaceWidth(getLineSegment(
prevLineIndex), getTabSize());
int idealIndent = getIdealIndentForLine(lineIndex, prevLineIndex,
prevLineIndent);
if (idealIndent == -1 || idealIndent == currentIndent ||
(!canDecreaseIndent && idealIndent < currentIndent))
return false;
// Do it
try
{
beginCompoundEdit();
int start = getLineStartOffset(lineIndex);
remove(start,whitespaceChars[0]);
String prevIndentString = (prevLineIndex >= 0) ?
StandardUtilities.getIndentString(getLineText(
prevLineIndex)) : null;
String indentString;
if (prevIndentString == null)
{
indentString = StandardUtilities.createWhiteSpace(
idealIndent,
getBooleanProperty("noTabs") ? 0 : getTabSize());
}
else if (idealIndent == prevLineIndent)
indentString = prevIndentString;
else if (idealIndent < prevLineIndent)
indentString = StandardUtilities.truncateWhiteSpace(
idealIndent, getTabSize(), prevIndentString);
else
indentString = prevIndentString +
StandardUtilities.createWhiteSpace(
idealIndent - prevLineIndent,
getBooleanProperty("noTabs") ? 0 : getTabSize(),
prevLineIndent);
insert(start, indentString);
}
finally
{
endCompoundEdit();
}
return true;
} //}}}
//{{{ getCurrentIndentForLine() method
/**
* Returns the line's current leading indent.
* @param lineIndex The line number
* @param whitespaceChars If this is non-null, the number of whitespace
* characters is stored at the 0 index
* @since jEdit 4.2pre2
*/
public int getCurrentIndentForLine(int lineIndex, int[] whitespaceChars)
{
Segment seg = new Segment();
getLineText(lineIndex,seg);
int tabSize = getTabSize();
int currentIndent = 0;
loop: for(int i = 0; i < seg.count; i++)
{
char c = seg.array[seg.offset + i];
switch(c)
{
case ' ':
currentIndent++;
if(whitespaceChars != null)
whitespaceChars[0]++;
break;
case '\t':
currentIndent += tabSize - (currentIndent
% tabSize);
if(whitespaceChars != null)
whitespaceChars[0]++;
break;
default:
break loop;
}
}
return currentIndent;
} //}}}
//{{{ getIdealIndentForLine() method
/**
* Returns the ideal leading indent for the specified line.
* This will apply the various auto-indent rules.
* @param lineIndex The line number
*/
public int getIdealIndentForLine(int lineIndex)
{
int prevLineIndex = getPriorNonEmptyLine(lineIndex);
int oldIndent = prevLineIndex == -1 ? 0 :
StandardUtilities.getLeadingWhiteSpaceWidth(
getLineSegment(prevLineIndex),
getTabSize());
return getIdealIndentForLine(lineIndex, prevLineIndex,
oldIndent);
} //}}}
//{{{ getIdealIndentForLine() method
/**
* Returns the ideal leading indent for the specified line.
* This will apply the various auto-indent rules.
* @param lineIndex The line number
* @param prevLineIndex The index of the previous non-empty line
* @param oldIndent The indent width of the previous line (or 0)
*/
private int getIdealIndentForLine(int lineIndex, int prevLineIndex,
int oldIndent)
{
int prevPrevLineIndex = prevLineIndex < 0 ? -1
: getPriorNonEmptyLine(prevLineIndex);
int newIndent = oldIndent;
List<IndentRule> indentRules = getIndentRules(lineIndex);
List<IndentAction> actions = new LinkedList<IndentAction>();
for (int i = 0;i<indentRules.size();i++)
{
IndentRule rule = indentRules.get(i);
rule.apply(this,lineIndex,prevLineIndex,
prevPrevLineIndex,actions);
}
for (IndentAction action : actions)
{
newIndent = action.calculateIndent(this, lineIndex,
oldIndent, newIndent);
if (!action.keepChecking())
break;
}
if (newIndent < 0)
newIndent = 0;
return newIndent;
} //}}}
//{{{ getVirtualWidth() method
/**
* Returns the virtual column number (taking tabs into account) of the
* specified position.
*
* @param line The line number
* @param column The column number
* @since jEdit 4.1pre1
*/
public int getVirtualWidth(int line, int column)
{
try
{
readLock();
int start = getLineStartOffset(line);
Segment seg = new Segment();
getText(start,column,seg);
return StandardUtilities.getVirtualWidth(seg,getTabSize());
}
finally
{
readUnlock();
}
} //}}}
//{{{ getOffsetOfVirtualColumn() method
/**
* Returns the offset of a virtual column number (taking tabs
* into account) relative to the start of the line in question.
*
* @param line The line number
* @param column The virtual column number
* @param totalVirtualWidth If this array is non-null, the total
* virtual width will be stored in its first location if this method
* returns -1.
*
* @return -1 if the column is out of bounds
*
* @since jEdit 4.1pre1
*/
public int getOffsetOfVirtualColumn(int line, int column,
int[] totalVirtualWidth)
{
try
{
readLock();
Segment seg = new Segment();
getLineText(line,seg);
return StandardUtilities.getOffsetOfVirtualColumn(seg,
getTabSize(),column,totalVirtualWidth);
}
finally
{
readUnlock();
}
} //}}}
//{{{ insertAtColumn() method
/**
* Like the {@link #insert(int,String)} method, but inserts the string at
* the specified virtual column. Inserts spaces as appropriate if
* the line is shorter than the column.
* @param line The line number
* @param col The virtual column number
* @param str The string
*/
public void insertAtColumn(int line, int col, String str)
{
try
{
writeLock();
int[] total = new int[1];
int offset = getOffsetOfVirtualColumn(line,col,total);
if(offset == -1)
{
offset = getLineEndOffset(line) - 1;
str = StandardUtilities.createWhiteSpace(col - total[0],0) + str;
}
else
offset += getLineStartOffset(line);
insert(offset,str);
}
finally
{
writeUnlock();
}
} //}}}
//{{{ insertIndented() method
/**
* Inserts a string into the buffer, indenting each line of the string
* to match the indent of the first line.
*
* @param offset The offset
* @param text The text
*
* @return The number of characters of indent inserted on each new
* line. This is used by the abbreviations code.
*
* @since jEdit 4.2pre14
*/
public int insertIndented(int offset, String text)
{
try
{
beginCompoundEdit();
// obtain the leading indent for later use
int firstLine = getLineOfOffset(offset);
CharSequence lineText = getLineSegment(firstLine);
int leadingIndent
= StandardUtilities.getLeadingWhiteSpaceWidth(
lineText,getTabSize());
String whiteSpace = StandardUtilities.createWhiteSpace(
leadingIndent,getBooleanProperty("noTabs")
? 0 : getTabSize());
insert(offset,text);
int lastLine = getLineOfOffset(offset + text.length());
// note that if firstLine == lastLine, loop does not
// execute
for(int i = firstLine + 1; i <= lastLine; i++)
{
insert(getLineStartOffset(i),whiteSpace);
}
return whiteSpace.length();
}
finally
{
endCompoundEdit();
}
} //}}}
//{{{ isElectricKey() methods
/**
* Should inserting this character trigger a re-indent of
* the current line?
* @since jEdit 4.3pre2
* @deprecated Use #isElectricKey(char,int)
*/
@Deprecated
public boolean isElectricKey(char ch)
{
return mode.isElectricKey(ch);
}
/**
* Should inserting this character trigger a re-indent of
* the current line?
* @since jEdit 4.3pre9
*/
public boolean isElectricKey(char ch, int line)
{
TokenMarker.LineContext ctx = lineMgr.getLineContext(line);
Mode mode = ModeProvider.instance.getMode(ctx.rules.getModeName());
// mode can be null, though that's probably an error "further up":
if (mode == null)
return false;
return mode.isElectricKey(ch);
} //}}}
//}}}
//{{{ Syntax highlighting
//{{{ markTokens() method
/**
* Returns the syntax tokens for the specified line.
* @param lineIndex The line number
* @param tokenHandler The token handler that will receive the syntax
* tokens
* @since jEdit 4.1pre1
*/
public void markTokens(int lineIndex, TokenHandler tokenHandler)
{
Segment seg = new Segment();
if(lineIndex < 0 || lineIndex >= lineMgr.getLineCount())
throw new ArrayIndexOutOfBoundsException(lineIndex);
int firstInvalidLineContext = lineMgr.getFirstInvalidLineContext();
int start;
if(textMode || firstInvalidLineContext == -1)
{
start = lineIndex;
}
else
{
start = Math.min(firstInvalidLineContext,
lineIndex);
}
if(Debug.TOKEN_MARKER_DEBUG)
Log.log(Log.DEBUG,this,"tokenize from " + start + " to " + lineIndex);
TokenMarker.LineContext oldContext = null;
TokenMarker.LineContext context = null;
for(int i = start; i <= lineIndex; i++)
{
getLineText(i,seg);
oldContext = lineMgr.getLineContext(i);
TokenMarker.LineContext prevContext = (
(i == 0 || textMode) ? null
: lineMgr.getLineContext(i - 1)
);
context = tokenMarker.markTokens(prevContext,
(i == lineIndex ? tokenHandler
: DummyTokenHandler.INSTANCE), seg);
lineMgr.setLineContext(i,context);
}
int lineCount = lineMgr.getLineCount();
if(lineCount - 1 == lineIndex)
lineMgr.setFirstInvalidLineContext(-1);
else if(oldContext != context)
lineMgr.setFirstInvalidLineContext(lineIndex + 1);
else if(firstInvalidLineContext == -1)
/* do nothing */;
else
{
lineMgr.setFirstInvalidLineContext(Math.max(
firstInvalidLineContext,lineIndex + 1));
}
} //}}}
//{{{ getTokenMarker() method
public TokenMarker getTokenMarker()
{
return tokenMarker;
} //}}}
//{{{ setTokenMarker() method
public void setTokenMarker(TokenMarker tokenMarker)
{
TokenMarker oldTokenMarker = this.tokenMarker;
this.tokenMarker = tokenMarker;
// don't do this on initial token marker
if(oldTokenMarker != null && tokenMarker != oldTokenMarker)
{
lineMgr.setFirstInvalidLineContext(0);
}
} //}}}
//{{{ createPosition() method
/**
* Creates a floating position.
* @param offset The offset
*/
public Position createPosition(int offset)
{
try
{
readLock();
if(offset < 0 || offset > contentMgr.getLength())
throw new ArrayIndexOutOfBoundsException(offset);
return positionMgr.createPosition(offset);
}
finally
{
readUnlock();
}
} //}}}
//}}}
//{{{ Property methods
//{{{ propertiesChanged() method
/**
* Reloads settings from the properties. This should be called
* after the <code>syntax</code> or <code>folding</code>
* buffer-local properties are changed.
*/
public void propertiesChanged()
{
String folding = getStringProperty("folding");
FoldHandler handler = FoldHandler.getFoldHandler(folding);
if(handler != null)
{
setFoldHandler(handler);
}
else
{
if (folding != null)
Log.log(Log.WARNING, this, "invalid 'folding' property: " + folding);
setFoldHandler(new DummyFoldHandler());
}
} //}}}
//{{{ getTabSize() method
/**
* Returns the tab size used in this buffer. This is equivalent
* to calling <code>getProperty("tabSize")</code>.
* This method is thread-safe.
*/
public int getTabSize()
{
int tabSize = getIntegerProperty("tabSize",8);
if(tabSize <= 0)
return 8;
else
return tabSize;
} //}}}
//{{{ getIndentSize() method
/**
* Returns the indent size used in this buffer. This is equivalent
* to calling <code>getProperty("indentSize")</code>.
* This method is thread-safe.
* @since jEdit 2.7pre1
*/
public int getIndentSize()
{
int indentSize = getIntegerProperty("indentSize",8);
if(indentSize <= 0)
return 8;
else
return indentSize;
} //}}}
//{{{ getProperty() method
/**
* Returns the value of a buffer-local property.<p>
*
* Using this method is generally discouraged, because it returns an
* <code>Object</code> which must be cast to another type
* in order to be useful, and this can cause problems if the object
* is of a different type than what the caller expects.<p>
*
* The following methods should be used instead:
* <ul>
* <li>{@link #getStringProperty(String)}</li>
* <li>{@link #getBooleanProperty(String)}</li>
* <li>{@link #getIntegerProperty(String,int)}</li>
* </ul>
*
* This method is thread-safe.
*
* @param name The property name. For backwards compatibility, this
* is an <code>Object</code>, not a <code>String</code>.
*/
public Object getProperty(Object name)
{
synchronized(propertyLock)
{
// First try the buffer-local properties
PropValue o = properties.get(name);
if(o != null)
return o.value;
// For backwards compatibility
if(!(name instanceof String))
return null;
Object retVal = getDefaultProperty((String)name);
if(retVal == null)
return null;
else
{
properties.put(name,new PropValue(retVal,true));
return retVal;
}
}
} //}}}
//{{{ getDefaultProperty() method
public Object getDefaultProperty(String key)
{
return null;
} //}}}
//{{{ setProperty() method
/**
* Sets the value of a buffer-local property.
* @param name The property name
* @param value The property value
* @since jEdit 4.0pre1
*/
public void setProperty(String name, Object value)
{
if(value == null)
properties.remove(name);
else
{
PropValue test = properties.get(name);
if(test == null)
properties.put(name,new PropValue(value,false));
else if(test.value.equals(value))
{
// do nothing
}
else
{
test.value = value;
test.defaultValue = false;
}
}
} //}}}
//{{{ setDefaultProperty() method
public void setDefaultProperty(String name, Object value)
{
properties.put(name,new PropValue(value,true));
} //}}}
//{{{ unsetProperty() method
/**
* Clears the value of a buffer-local property.
* @param name The property name
* @since jEdit 4.0pre1
*/
public void unsetProperty(String name)
{
properties.remove(name);
} //}}}
//{{{ resetCachedProperties() method
public void resetCachedProperties()
{
// Need to reset properties that were cached defaults,
// since the defaults might have changed.
Iterator<PropValue> iter = properties.values().iterator();
while(iter.hasNext())
{
PropValue value = iter.next();
if(value.defaultValue)
iter.remove();
}
} //}}}
//{{{ getStringProperty() method
/**
* Returns the value of a string property. This method is thread-safe.
* @param name The property name
* @since jEdit 4.0pre1
*/
public String getStringProperty(String name)
{
Object obj = getProperty(name);
if(obj != null)
return obj.toString();
else
return null;
} //}}}
//{{{ setStringProperty() method
/**
* Sets a string property.
* @param name The property name
* @param value The value
* @since jEdit 4.0pre1
*/
public void setStringProperty(String name, String value)
{
setProperty(name,value);
} //}}}
//{{{ getBooleanProperty() methods
/**
* Returns the value of a boolean property. This method is thread-safe.
* @param name The property name
* @since jEdit 4.0pre1
*/
public boolean getBooleanProperty(String name)
{
return getBooleanProperty(name, false);
}
/**
* Returns the value of a boolean property. This method is thread-safe.
* @param name The property name
* @param def The default value
* @since jEdit 4.3pre17
*/
public boolean getBooleanProperty(String name, boolean def)
{
Object obj = getProperty(name);
return StandardUtilities.getBoolean(obj, def);
} //}}}
//{{{ setBooleanProperty() method
/**
* Sets a boolean property.
* @param name The property name
* @param value The value
* @since jEdit 4.0pre1
*/
public void setBooleanProperty(String name, boolean value)
{
setProperty(name,value ? Boolean.TRUE : Boolean.FALSE);
} //}}}
//{{{ getIntegerProperty() method
/**
* Returns the value of an integer property. This method is thread-safe.
* @param name The property name
* @since jEdit 4.0pre1
*/
public int getIntegerProperty(String name, int defaultValue)
{
boolean defaultValueFlag;
Object obj;
PropValue value = properties.get(name);
if(value != null)
{
obj = value.value;
defaultValueFlag = value.defaultValue;
}
else
{
obj = getProperty(name);
// will be cached from now on...
defaultValueFlag = true;
}
if(obj == null)
return defaultValue;
else if(obj instanceof Number)
return ((Number)obj).intValue();
else
{
try
{
int returnValue = Integer.parseInt(
obj.toString().trim());
properties.put(name,new PropValue(
returnValue,
defaultValueFlag));
return returnValue;
}
catch(Exception e)
{
return defaultValue;
}
}
} //}}}
//{{{ setIntegerProperty() method
/**
* Sets an integer property.
* @param name The property name
* @param value The value
* @since jEdit 4.0pre1
*/
public void setIntegerProperty(String name, int value)
{
setProperty(name,value);
} //}}}
//{{{ getPatternProperty()
/**
* Returns the value of a property as a regular expression.
* This method is thread-safe.
* @param name The property name
* @param flags Regular expression compilation flags
* @since jEdit 4.3pre5
*/
public Pattern getPatternProperty(String name, int flags)
{
synchronized(propertyLock)
{
boolean defaultValueFlag;
Object obj;
PropValue value = properties.get(name);
if(value != null)
{
obj = value.value;
defaultValueFlag = value.defaultValue;
}
else
{
obj = getProperty(name);
// will be cached from now on...
defaultValueFlag = true;
}
if(obj == null)
return null;
else if (obj instanceof Pattern)
return (Pattern) obj;
else
{
Pattern re = Pattern.compile(obj.toString(),flags);
properties.put(name,new PropValue(re,
defaultValueFlag));
return re;
}
}
} //}}}
//{{{ getRuleSetAtOffset() method
/**
* Returns the syntax highlighting ruleset at the specified offset.
* @since jEdit 4.1pre1
*/
public ParserRuleSet getRuleSetAtOffset(int offset)
{
int line = getLineOfOffset(offset);
offset -= getLineStartOffset(line);
if(offset != 0)
offset--;
DefaultTokenHandler tokens = new DefaultTokenHandler();
markTokens(line,tokens);
Token token = TextUtilities.getTokenAtOffset(tokens.getTokens(),offset);
return token.rules;
} //}}}
//{{{ getKeywordMapAtOffset() method
/**
* Returns the syntax highlighting keyword map in effect at the
* specified offset. Used by the <b>Complete Word</b> command to
* complete keywords.
* @param offset The offset
* @since jEdit 4.0pre3
*/
public KeywordMap getKeywordMapAtOffset(int offset)
{
return getRuleSetAtOffset(offset).getKeywords();
} //}}}
//{{{ getContextSensitiveProperty() method
/**
* Some settings, like comment start and end strings, can
* vary between different parts of a buffer (HTML text and inline
* JavaScript, for example).
* @param offset The offset
* @param name The property name
* @since jEdit 4.0pre3
*/
public String getContextSensitiveProperty(int offset, String name)
{
ParserRuleSet rules = getRuleSetAtOffset(offset);
Object value = null;
Map<String, String> rulesetProps = rules.getProperties();
if(rulesetProps != null)
value = rulesetProps.get(name);
if(value == null)
return null;
else
return String.valueOf(value);
} //}}}
//{{{ getMode() method
/**
* Returns this buffer's edit mode. This method is thread-safe.
*/
public Mode getMode()
{
return mode;
} //}}}
//{{{ setMode() methods
/**
* Sets this buffer's edit mode. Note that calling this before a buffer
* is loaded will have no effect; in that case, set the "mode" property
* to the name of the mode. A bit inelegant, I know...
* @param mode The mode name
* @since jEdit 4.2pre1
*/
public void setMode(String mode)
{
setMode(ModeProvider.instance.getMode(mode));
}
/**
* Sets this buffer's edit mode. Note that calling this before a buffer
* is loaded will have no effect; in that case, set the "mode" property
* to the name of the mode. A bit inelegant, I know...
* @param mode The mode
*/
public void setMode(Mode mode)
{
/* This protects against stupid people (like me)
* doing stuff like buffer.setMode(jEdit.getMode(...)); */
if(mode == null)
throw new NullPointerException("Mode must be non-null");
this.mode = mode;
textMode = "text".equals(mode.getName());
setTokenMarker(mode.getTokenMarker());
resetCachedProperties();
propertiesChanged();
} //}}}
//}}}
//{{{ Folding methods
//{{{ isFoldStart() method
/**
* Returns if the specified line begins a fold.
* @since jEdit 3.1pre1
*/
public boolean isFoldStart(int line)
{
return line != getLineCount() - 1
&& getFoldLevel(line) < getFoldLevel(line + 1);
} //}}}
//{{{ isFoldEnd() method
/**
* Returns if the specified line ends a fold.
* @since jEdit 4.2pre5
*/
public boolean isFoldEnd(int line)
{
return line != getLineCount() - 1
&& getFoldLevel(line) > getFoldLevel(line + 1);
} //}}}
//{{{ invalidateCachedFoldLevels() method
/**
* Invalidates all cached fold level information.
* @since jEdit 4.1pre11
*/
public void invalidateCachedFoldLevels()
{
lineMgr.setFirstInvalidFoldLevel(0);
fireFoldLevelChanged(0,getLineCount());
} //}}}
//{{{ getFoldLevel() method
/**
* Returns the fold level of the specified line.
* @param line A physical line index
* @since jEdit 3.1pre1
*/
public int getFoldLevel(int line)
{
if(line < 0 || line >= lineMgr.getLineCount())
throw new ArrayIndexOutOfBoundsException(line);
if(foldHandler instanceof DummyFoldHandler)
return 0;
int firstInvalidFoldLevel = lineMgr.getFirstInvalidFoldLevel();
if(firstInvalidFoldLevel == -1 || line < firstInvalidFoldLevel)
{
return lineMgr.getFoldLevel(line);
}
else
{
if(Debug.FOLD_DEBUG)
Log.log(Log.DEBUG,this,"Invalid fold levels from " + firstInvalidFoldLevel + " to " + line);
int newFoldLevel = 0;
boolean changed = false;
int firstUpdatedFoldLevel = firstInvalidFoldLevel;
for(int i = firstInvalidFoldLevel; i <= line; i++)
{
Segment seg = new Segment();
newFoldLevel = foldHandler.getFoldLevel(this,i,seg);
if(newFoldLevel != lineMgr.getFoldLevel(i))
{
if(Debug.FOLD_DEBUG)
Log.log(Log.DEBUG,this,i + " fold level changed");
changed = true;
// Update preceding fold levels if necessary
if (i == firstInvalidFoldLevel)
{
List<Integer> precedingFoldLevels =
foldHandler.getPrecedingFoldLevels(
this,i,seg,newFoldLevel);
if (precedingFoldLevels != null)
{
int j = i;
for (Integer foldLevel: precedingFoldLevels)
{
j--;
lineMgr.setFoldLevel(j,foldLevel.intValue());
}
if (j < firstUpdatedFoldLevel)
firstUpdatedFoldLevel = j;
}
}
}
lineMgr.setFoldLevel(i,newFoldLevel);
}
if(line == lineMgr.getLineCount() - 1)
lineMgr.setFirstInvalidFoldLevel(-1);
else
lineMgr.setFirstInvalidFoldLevel(line + 1);
if(changed)
{
if(Debug.FOLD_DEBUG)
Log.log(Log.DEBUG,this,"fold level changed: " + firstUpdatedFoldLevel + ',' + line);
fireFoldLevelChanged(firstUpdatedFoldLevel,line);
}
return newFoldLevel;
}
} //}}}
//{{{ getFoldAtLine() method
/**
* Returns an array. The first element is the start line, the
* second element is the end line, of the fold containing the
* specified line number.
* @param line The line number
* @since jEdit 4.0pre3
*/
public int[] getFoldAtLine(int line)
{
int start, end;
if(isFoldStart(line))
{
start = line;
int foldLevel = getFoldLevel(line);
line++;
while(getFoldLevel(line) > foldLevel)
{
line++;
if(line == getLineCount())
break;
}
end = line - 1;
}
else
{
start = line;
int foldLevel = getFoldLevel(line);
while(getFoldLevel(start) >= foldLevel)
{
if(start == 0)
break;
else
start--;
}
end = line;
while(getFoldLevel(end) >= foldLevel)
{
end++;
if(end == getLineCount())
break;
}
end--;
}
while(getLineLength(end) == 0 && end > start)
end--;
return new int[] { start, end };
} //}}}
//{{{ getFoldHandler() method
/**
* Returns the current buffer's fold handler.
* @since jEdit 4.2pre1
*/
public FoldHandler getFoldHandler()
{
return foldHandler;
} //}}}
//{{{ setFoldHandler() method
/**
* Sets the buffer's fold handler.
* @since jEdit 4.2pre2
*/
public void setFoldHandler(FoldHandler foldHandler)
{
FoldHandler oldFoldHandler = this.foldHandler;
if(foldHandler.equals(oldFoldHandler))
return;
this.foldHandler = foldHandler;
lineMgr.setFirstInvalidFoldLevel(0);
fireFoldHandlerChanged();
} //}}}
//}}}
//{{{ Undo
//{{{ undo() method
/**
* Undoes the most recent edit.
*
* @since jEdit 4.0pre1
*/
public void undo(TextArea textArea)
{
if(undoMgr == null)
return;
if(!isEditable())
{
textArea.getToolkit().beep();
return;
}
try
{
writeLock();
undoInProgress = true;
fireBeginUndo();
int caret = undoMgr.undo();
if(caret == -1)
textArea.getToolkit().beep();
else
textArea.setCaretPosition(caret);
fireEndUndo();
fireTransactionComplete();
}
finally
{
undoInProgress = false;
writeUnlock();
}
} //}}}
//{{{ redo() method
/**
* Redoes the most recently undone edit.
*
* @since jEdit 2.7pre2
*/
public void redo(TextArea textArea)
{
if(undoMgr == null)
return;
if(!isEditable())
{
Toolkit.getDefaultToolkit().beep();
return;
}
try
{
writeLock();
undoInProgress = true;
fireBeginRedo();
int caret = undoMgr.redo();
if(caret == -1)
textArea.getToolkit().beep();
else
textArea.setCaretPosition(caret);
fireEndRedo();
fireTransactionComplete();
}
finally
{
undoInProgress = false;
writeUnlock();
}
} //}}}
//{{{ isTransactionInProgress() method
/**
* Returns if an undo or compound edit is currently in progress. If this
* method returns true, then eventually a
* {@link org.gjt.sp.jedit.buffer.BufferListener#transactionComplete(JEditBuffer)}
* buffer event will get fired.
* @since jEdit 4.0pre6
*/
public boolean isTransactionInProgress()
{
return transaction || undoInProgress || insideCompoundEdit();
} //}}}
//{{{ beginCompoundEdit() method
/**
* Starts a compound edit. All edits from now on until
* {@link #endCompoundEdit()} are called will be merged
* into one. This can be used to make a complex operation
* undoable in one step. Nested calls to
* {@link #beginCompoundEdit()} behave as expected,
* requiring the same number of {@link #endCompoundEdit()}
* calls to end the edit.
* @see #endCompoundEdit()
*/
public void beginCompoundEdit()
{
try
{
writeLock();
undoMgr.beginCompoundEdit();
}
finally
{
writeUnlock();
}
} //}}}
//{{{ endCompoundEdit() method
/**
* Ends a compound edit. All edits performed since
* {@link #beginCompoundEdit()} was called can now
* be undone in one step by calling {@link #undo(TextArea)}.
* @see #beginCompoundEdit()
*/
public void endCompoundEdit()
{
try
{
writeLock();
undoMgr.endCompoundEdit();
if(!insideCompoundEdit())
fireTransactionComplete();
}
finally
{
writeUnlock();
}
}//}}}
//{{{ insideCompoundEdit() method
/**
* Returns if a compound edit is currently active.
* @since jEdit 3.1pre1
*/
public boolean insideCompoundEdit()
{
return undoMgr.insideCompoundEdit();
} //}}}
//{{{ isUndoInProgress() method
/**
* Returns if an undo or redo is currently being performed.
* @since jEdit 4.3pre3
*/
public boolean isUndoInProgress()
{
return undoInProgress;
} //}}}
//{{{ getUndoId() method
/**
* Returns an object that identifies the undo operation to which the
* current content change belongs. This method can be used by buffer
* listeners during content changes (contentInserted/contentRemoved)
* to find out which content changes belong to the same "undo" operation.
* The same undoId object will be returned for all content changes
* belonging to the same undo operation. Only the identity of the
* undoId can be used, by comparing it with a previously-returned undoId
* using "==".
* @since jEdit 4.3pre18
*/
public Object getUndoId()
{
return undoMgr.getUndoId();
} //}}}
//}}}
//{{{ Buffer events
public static final int NORMAL_PRIORITY = 0;
public static final int HIGH_PRIORITY = 1;
static class Listener
{
BufferListener listener;
int priority;
Listener(BufferListener listener, int priority)
{
this.listener = listener;
this.priority = priority;
}
}
//{{{ addBufferListener() methods
/**
* Adds a buffer change listener.
* @param listener The listener
* @param priority Listeners with HIGH_PRIORITY get the event before
* listeners with NORMAL_PRIORITY
* @since jEdit 4.3pre3
*/
public void addBufferListener(BufferListener listener,
int priority)
{
Listener l = new Listener(listener,priority);
for(int i = 0; i < bufferListeners.size(); i++)
{
Listener _l = bufferListeners.get(i);
if(_l.priority < priority)
{
bufferListeners.add(i,l);
return;
}
}
bufferListeners.add(l);
}
/**
* Adds a buffer change listener.
* @param listener The listener
* @since jEdit 4.3pre3
*/
public void addBufferListener(BufferListener listener)
{
addBufferListener(listener,NORMAL_PRIORITY);
} //}}}
//{{{ removeBufferListener() method
/**
* Removes a buffer change listener.
* @param listener The listener
* @since jEdit 4.3pre3
*/
public void removeBufferListener(BufferListener listener)
{
for(int i = 0; i < bufferListeners.size(); i++)
{
if(bufferListeners.get(i).listener == listener)
{
bufferListeners.remove(i);
return;
}
}
} //}}}
//{{{ getBufferListeners() method
/**
* Returns an array of registered buffer change listeners.
* @since jEdit 4.3pre3
*/
public BufferListener[] getBufferListeners()
{
BufferListener[] returnValue
= new BufferListener[
bufferListeners.size()];
for(int i = 0; i < returnValue.length; i++)
{
returnValue[i] = bufferListeners.get(i).listener;
}
return returnValue;
} //}}}
//{{{ setUndoLimit() method
/**
* Set the undo limit of the Undo Manager.
*
* @param limit the new limit
* @since jEdit 4.3pre16
*/
public void setUndoLimit(int limit)
{
if (undoMgr != null)
undoMgr.setLimit(limit);
} //}}}
//{{{ canUndo() method
/**
* Returns true if an undo operation can be performed.
* @since jEdit 4.3pre18
*/
public boolean canUndo()
{
if (undoMgr == null)
return false;
return undoMgr.canUndo();
} //}}}
//{{{ canRedo() method
/**
* Returns true if a redo operation can be performed.
* @since jEdit 4.3pre18
*/
public boolean canRedo()
{
if (undoMgr == null)
return false;
return undoMgr.canRedo();
} //}}}
//}}}
//{{{ Protected members
protected Mode mode;
protected boolean textMode;
protected UndoManager undoMgr;
//{{{ Event firing methods
//{{{ fireFoldLevelChanged() method
protected void fireFoldLevelChanged(int start, int end)
{
for(int i = 0; i < bufferListeners.size(); i++)
{
BufferListener listener = getListener(i);
try
{
listener.foldLevelChanged(this,start,end);
}
catch(Throwable t)
{
Log.log(Log.ERROR,this,"Exception while sending buffer event to "+ listener +" :");
Log.log(Log.ERROR,this,t);
}
}
} //}}}
//{{{ fireContentInserted() method
protected void fireContentInserted(int startLine, int offset,
int numLines, int length)
{
for(int i = 0; i < bufferListeners.size(); i++)
{
BufferListener listener = getListener(i);
try
{
listener.contentInserted(this,startLine,
offset,numLines,length);
}
catch(Throwable t)
{
Log.log(Log.ERROR,this,"Exception while sending buffer event to "+ listener +" :");
Log.log(Log.ERROR,this,t);
}
}
} //}}}
//{{{ fireContentRemoved() method
protected void fireContentRemoved(int startLine, int offset,
int numLines, int length)
{
for(int i = 0; i < bufferListeners.size(); i++)
{
BufferListener listener = getListener(i);
try
{
listener.contentRemoved(this,startLine,
offset,numLines,length);
}
catch(Throwable t)
{
Log.log(Log.ERROR,this,"Exception while sending buffer event to "+ listener +" :");
Log.log(Log.ERROR,this,t);
}
}
} //}}}
//{{{ firePreContentInserted() method
protected void firePreContentInserted(int startLine, int offset,
int numLines, int length)
{
for(int i = 0; i < bufferListeners.size(); i++)
{
BufferListener listener = getListener(i);
try
{
listener.preContentInserted(this,startLine,
offset,numLines,length);
}
catch(Throwable t)
{
Log.log(Log.ERROR,this,"Exception while sending buffer event to "+ listener +" :");
Log.log(Log.ERROR,this,t);
}
}
} //}}}
//{{{ firePreContentRemoved() method
protected void firePreContentRemoved(int startLine, int offset,
int numLines, int length)
{
for(int i = 0; i < bufferListeners.size(); i++)
{
BufferListener listener = getListener(i);
try
{
listener.preContentRemoved(this,startLine,
offset,numLines,length);
}
catch(Throwable t)
{
Log.log(Log.ERROR,this,"Exception while sending buffer event to "+ listener +" :");
Log.log(Log.ERROR,this,t);
}
}
} //}}}
//{{{ fireBeginUndo() method
protected void fireBeginUndo()
{
} //}}}
//{{{ fireEndUndo() method
protected void fireEndUndo()
{
} //}}}
//{{{ fireBeginRedo() method
protected void fireBeginRedo()
{
} //}}}
//{{{ fireEndRedo() method
protected void fireEndRedo()
{
} //}}}
//{{{ fireTransactionComplete() method
protected void fireTransactionComplete()
{
for(int i = 0; i < bufferListeners.size(); i++)
{
BufferListener listener = getListener(i);
try
{
listener.transactionComplete(this);
}
catch(Throwable t)
{
Log.log(Log.ERROR,this,"Exception while sending buffer event to "+ listener +" :");
Log.log(Log.ERROR,this,t);
}
}
} //}}}
//{{{ fireFoldHandlerChanged() method
protected void fireFoldHandlerChanged()
{
for(int i = 0; i < bufferListeners.size(); i++)
{
BufferListener listener = getListener(i);
try
{
listener.foldHandlerChanged(this);
}
catch(Throwable t)
{
Log.log(Log.ERROR,this,"Exception while sending buffer event to "+ listener +" :");
Log.log(Log.ERROR,this,t);
}
}
} //}}}
//{{{ fireBufferLoaded() method
protected void fireBufferLoaded()
{
for(int i = 0; i < bufferListeners.size(); i++)
{
BufferListener listener = getListener(i);
try
{
listener.bufferLoaded(this);
}
catch(Throwable t)
{
Log.log(Log.ERROR,this,"Exception while sending buffer event to "+ listener +" :");
Log.log(Log.ERROR,this,t);
}
}
} //}}}
//}}}
//{{{ isFileReadOnly() method
protected boolean isFileReadOnly()
{
return readOnly;
} //}}}
//{{{ setFileReadOnly() method
protected void setFileReadOnly(boolean readOnly)
{
this.readOnly = readOnly;
} //}}}
//{{{ loadText() method
protected void loadText(Segment seg, IntegerArray endOffsets)
{
if(seg == null)
seg = new Segment(new char[1024],0,0);
if(endOffsets == null)
{
endOffsets = new IntegerArray();
endOffsets.add(1);
}
try
{
writeLock();
// For `reload' command
// contentMgr.remove() changes this!
int length = getLength();
firePreContentRemoved(0,0,getLineCount()
- 1,length);
contentMgr.remove(0,length);
lineMgr.contentRemoved(0,0,getLineCount()
- 1,length);
positionMgr.contentRemoved(0,length);
fireContentRemoved(0,0,getLineCount()
- 1,length);
firePreContentInserted(0, 0, endOffsets.getSize() - 1, seg.count - 1);
// theoretically a segment could
// have seg.offset != 0 but
// SegmentBuffer never does that
contentMgr._setContent(seg.array,seg.count);
lineMgr._contentInserted(endOffsets);
positionMgr.contentInserted(0,seg.count);
fireContentInserted(0,0,
endOffsets.getSize() - 1,
seg.count - 1);
}
finally
{
writeUnlock();
}
} //}}}
//{{{ invalidateFoldLevels() method
protected void invalidateFoldLevels()
{
lineMgr.setFirstInvalidFoldLevel(0);
} //}}}
//{{{ parseBufferLocalProperties() method
protected void parseBufferLocalProperties()
{
int maxRead = 10000;
int lineCount = getLineCount();
int lastLine = Math.min(9, lineCount - 1);
int max = Math.min(maxRead, getLineEndOffset(lastLine) - 1);
parseBufferLocalProperties(getSegment(0, max));
// first line for last 10 lines, make sure not to overlap
// with the first 10
int firstLine = Math.max(lastLine + 1, lineCount - 10);
if(firstLine < lineCount)
{
int firstLineStartOffset = getLineStartOffset(firstLine);
int length = getLineEndOffset(lineCount - 1)
- (firstLineStartOffset + 1);
if (length > maxRead)
{
firstLineStartOffset += length - maxRead;
length = maxRead;
}
parseBufferLocalProperties(getSegment(firstLineStartOffset,length));
}
} //}}}
//{{{ Used to store property values
protected static class PropValue
{
PropValue(Object value, boolean defaultValue)
{
if(value == null)
throw new NullPointerException();
this.value = value;
this.defaultValue = defaultValue;
}
Object value;
/**
* If this is true, then this value is cached from the mode
* or global defaults, so when the defaults change this property
* value must be reset.
*/
boolean defaultValue;
/**
* For debugging purposes.
*/
public String toString()
{
return value.toString();
}
} //}}}
//}}}
//{{{ Private members
private List<Listener> bufferListeners;
private final ReentrantReadWriteLock lock;
private ContentManager contentMgr;
private LineManager lineMgr;
private PositionManager positionMgr;
private FoldHandler foldHandler;
private IntegerArray integerArray;
private TokenMarker tokenMarker;
private boolean undoInProgress;
private boolean dirty;
private boolean readOnly;
private boolean readOnlyOverride;
private boolean transaction;
private boolean loading;
private boolean io;
private final Map<Object, PropValue> properties;
private final Object propertyLock;
//{{{ getListener() method
private BufferListener getListener(int index)
{
return bufferListeners.get(index).listener;
} //}}}
//{{{ contentInserted() method
private void contentInserted(int offset, int length,
IntegerArray endOffsets)
{
try
{
transaction = true;
int startLine = lineMgr.getLineOfOffset(offset);
int numLines = endOffsets.getSize();
if (!loading)
{
firePreContentInserted(startLine, offset, numLines, length);
}
lineMgr.contentInserted(startLine,offset,numLines,length,
endOffsets);
positionMgr.contentInserted(offset,length);
setDirty(true);
if(!loading)
{
fireContentInserted(startLine,offset,numLines,length);
if(!undoInProgress && !insideCompoundEdit())
fireTransactionComplete();
}
}
finally
{
transaction = false;
}
} //}}}
//{{{ parseBufferLocalProperties() method
private void parseBufferLocalProperties(CharSequence prop)
{
StringBuilder buf = new StringBuilder();
String name = null;
boolean escape = false;
int length = prop.length();
for(int i = 0; i < length; i++)
{
char c = prop.charAt(i);
switch(c)
{
case ':':
if(escape)
{
escape = false;
buf.append(':');
break;
}
if(name != null)
{
// use the low-level property setting code
// so that if we have a buffer-local
// property with the same value as a default,
// later changes in the default don't affect
// the buffer-local property
properties.put(name,new PropValue(buf.toString(),false));
name = null;
}
buf.setLength(0);
break;
case '=':
if(escape)
{
escape = false;
buf.append('=');
break;
}
name = buf.toString();
buf.setLength(0);
break;
case '\\':
if(escape)
buf.append('\\');
escape = !escape;
break;
case 'n':
if(escape)
{ buf.append('\n');
escape = false;
break;
}
case 'r':
if(escape)
{ buf.append('\r');
escape = false;
break;
}
case 't':
if(escape)
{
buf.append('\t');
escape = false;
break;
}
default:
buf.append(c);
break;
}
}
} //}}}
//{{{ getIndentRules() method
private List<IndentRule> getIndentRules(int line)
{
String modeName = null;
TokenMarker.LineContext ctx = lineMgr.getLineContext(line);
if (ctx != null && ctx.rules != null)
modeName = ctx.rules.getModeName();
if (modeName == null)
modeName = tokenMarker.getMainRuleSet().getModeName();
return ModeProvider.instance.getMode(modeName).getIndentRules();
} //}}}
//}}}
}
| [
"Vampire0@6b1eeb88-9816-0410-afa2-b43733a0f04e"
] | Vampire0@6b1eeb88-9816-0410-afa2-b43733a0f04e |
c3d91c7c69423562b14f8ff3198aee38149f12d8 | f95d7a0cdd53638bf076171f7443f89d005cb2d0 | /src/main/java/com/training/interfaces/other/Hand.java | 92c5530823c99b9e674a0443d9dab9f8c581a576 | [] | no_license | VladWild/SimpleSpring | 7397a96ae8784b985ec788bdb1cfc416ecf22a14 | ba3b16b7c1ca258f6e645a76b58313372f89a962 | refs/heads/master | 2020-04-01T09:40:43.975735 | 2018-11-03T13:05:08 | 2018-11-03T13:05:08 | 153,085,328 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 94 | java | package com.training.interfaces.other;
public interface Hand {
void catchSomething();
}
| [
"gusevvladislav1995ya@yandex.ru"
] | gusevvladislav1995ya@yandex.ru |
13c67cc83d0909e54566d77743acab0cbcd33a26 | 7d549b435d930a913dc84dea8eed1440de3318d9 | /Classes/src/br/com/lermen/ocajp/fin/A.java | e5d01fee24c42960a17904970d8791a603568ef8 | [] | no_license | lermen-andrefabiano/estudo-certificacao-java | b5c93168c32003f71c5a2f95c55d3e9c016fe60a | 044c6169792d42d81818ea6f91b6ff43cf9518c1 | refs/heads/master | 2020-05-17T04:59:39.963297 | 2018-05-24T17:50:55 | 2018-05-24T17:50:55 | 20,411,641 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 125 | java | package br.com.lermen.ocajp.fin;
public final class A {// não pode extender a clasee B
public void a() {
}
}
| [
"lermen.andrefabiano@gmail.com"
] | lermen.andrefabiano@gmail.com |
7f6d6a2fc1adc65e1d85d6e8c0a61930cd24133c | 4abffdc4f313e14c800b210108d081d65ceac70f | /src/model/Field.java | 599c722046b27435ed1264994d9eed73a40082b9 | [] | no_license | helmeraac/PegSolitaire | 5fd7d7dd1ed6d7c6405f122e9c3807e821991503 | c3dd505b0f5dd842494dd227ab7e83e0dc412a85 | refs/heads/master | 2021-01-19T07:18:54.493901 | 2017-07-02T04:30:46 | 2017-07-02T04:31:10 | 95,685,251 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,272 | java | package model;
import model.Field.Symbol;
public class Field{
private Symbol owner;
/**
* Initializes the Field object with a Symbol.
*
* @param symbol a Symbol (O, or NONE)
*/
private Field(Symbol symbol) {
owner = symbol;
}
/**
* Static factory, returns a Field object with Symbol.NONE.
*/
public static Field getDefault() {
return new Field(Symbol.O);
}
public static Field getNone() {
return new Field(Symbol.NONE);
}
/**
* Returns the owner of a field as a Symbol.
*
* @return the owner of a field as a Symbol.
*/
public Symbol getOwner() {
return owner;
}
/**
* Sets the owner of a field.
*
* @param owner a Symbol (O or NONE)
*/
public void setOwner(Symbol owner) {
this.owner = owner;
}
/**
* Returns the Symbol (O or NONE) as a String.
*
* @return the owner of a field as a String.
*/
@Override
public String toString() {
return owner.toString();
}
/**
* A representation of an owner of a field.
*/
public enum Symbol {
X,O, NONE
}
} | [
"leavendanoro@unal.edu.co"
] | leavendanoro@unal.edu.co |
03035d463d72f23f0c6dba2f0c4774a79a27c7cf | 059113dbce2acfe390170de39d3ee48964c061f0 | /backup/squid233/squidcraft/world/biome/BiomeUtils.java | 2c317c640ec9797c8000edacea214e2bb806ab27 | [
"MIT"
] | permissive | squid233/SquidCraft | d5935fd69f650bd4734d9e0fb92bec4ff8087842 | df8afa9b3fe6f2a2074754b13fdf068eb9ea0055 | refs/heads/1.16.x | 2021-05-21T00:28:30.565590 | 2020-12-19T08:28:52 | 2020-12-19T08:28:52 | 252,468,264 | 13 | 6 | MIT | 2020-08-19T03:22:36 | 2020-04-02T13:48:42 | Java | UTF-8 | Java | false | false | 4,759 | java | package io.github.squid233.squidcraft.world.biome;
import io.github.squid233.squidcraft.world.Features;
import io.github.squid233.squidcraft.world.feature.OreFeature;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType;
import net.minecraft.sound.BiomeMoodSound;
import net.minecraft.world.biome.Biome;
import net.minecraft.world.biome.BiomeEffects;
import net.minecraft.world.biome.GenerationSettings;
import net.minecraft.world.biome.SpawnSettings;
import net.minecraft.world.gen.GenerationStep;
import net.minecraft.world.gen.ProbabilityConfig;
import net.minecraft.world.gen.decorator.ChanceDecoratorConfig;
import net.minecraft.world.gen.decorator.Decorator;
import net.minecraft.world.gen.decorator.DecoratorConfig;
import net.minecraft.world.gen.feature.Feature;
import net.minecraft.world.gen.feature.FeatureConfig;
import net.minecraft.world.gen.feature.MineshaftFeature;
import net.minecraft.world.gen.feature.MineshaftFeatureConfig;
import net.minecraft.world.gen.feature.ShipwreckFeatureConfig;
import net.minecraft.world.gen.surfacebuilder.ConfiguredSurfaceBuilder;
import net.minecraft.world.gen.surfacebuilder.SurfaceBuilder;
import net.minecraft.world.gen.surfacebuilder.TernarySurfaceConfig;
import static net.minecraft.entity.EntityType.*;
import static net.minecraft.entity.SpawnGroup.WATER_CREATURE;
import static net.minecraft.world.gen.GenerationStep.Feature.VEGETAL_DECORATION;
import static net.minecraft.world.gen.feature.DefaultBiomeFeatures.*;
import static net.minecraft.world.gen.feature.StructureFeature.MINESHAFT;
import static net.minecraft.world.gen.feature.StructureFeature.SHIPWRECK;
public class BiomeUtils {
protected static void adds(GenerationSettings.Builder b) {
addOceanCarvers(b);
addDefaultLakes(b);
addDungeons(b);
addDefaultOres(b);
addDefaultDisks(b);
addMineables(b);
addWaterBiomeOakTrees(b);
addDefaultFlowers(b);
addDefaultGrass(b);
addDefaultMushrooms(b);
addDefaultVegetation(b);
addSprings(b);
addSeagrassOnStone(b);
addKelp(b);
addFrozenTopLayer(b);
addClay(b);
addDefaultUndergroundStructures(b);
}
public static void spawnWaterCreature(SpawnSettings.Builder b, EntityType<? extends Entity> entityType, int w, int min, int max) {
b.spawn(WATER_CREATURE, new SpawnSettings.SpawnEntry(entityType, w, min, max));
}
public static GenerationSettings.Builder buildGrassSurface(GenerationSettings.Builder anotherGenSet, SurfaceBuilder<TernarySurfaceConfig> surfaceBuilder) {
return anotherGenSet.surfaceBuilder(new ConfiguredSurfaceBuilder<>(surfaceBuilder, SurfaceBuilder.GRASS_CONFIG));
}
public static Biome createSquidBiome(SurfaceBuilder<TernarySurfaceConfig> surfaceBuilder,
Biome.Precipitation precipitation,
float temperature,
float downfall,
BiomeMoodSound moodSound) {
SpawnSettings.Builder b = new SpawnSettings.Builder();
GenerationSettings.Builder bb = buildGrassSurface(new GenerationSettings.Builder().feature(GenerationStep.Feature.UNDERGROUND_ORES, OreFeature.SQUID_BLOCK_OVERWORLD)
.feature(GenerationStep.Feature.SURFACE_STRUCTURES,
Features.SQUID_SPIRAL.configure(FeatureConfig.DEFAULT).decorate(Decorator.CHANCE.configure(new ChanceDecoratorConfig(100)))), surfaceBuilder);
bb.structureFeature(MINESHAFT.configure(new MineshaftFeatureConfig(0.004F, MineshaftFeature.Type.NORMAL)));
bb.structureFeature(SHIPWRECK.configure(new ShipwreckFeatureConfig(false)));
adds(bb);
bb.feature(VEGETAL_DECORATION, Feature.SEAGRASS.configure(new ProbabilityConfig(0.3F)).decorate(Decorator.TOP_SOLID_HEIGHTMAP.configure(DecoratorConfig.DEFAULT)));
spawnWaterCreature(b, SQUID, 96, 4, 6);
spawnWaterCreature(b, COD, 10, 3, 6);
spawnWaterCreature(b, DOLPHIN, 2, 1, 2);
return new Biome.Builder()
.spawnSettings(b.build())
.generationSettings(bb.build())
.precipitation(precipitation)
.category(Biome.Category.OCEAN)
.depth(0.125F)
.scale(0.05F)
.temperature(temperature)
.downfall(downfall)
.effects(new BiomeEffects.Builder()
.waterColor(4159204)
.waterFogColor(329011)
.fogColor(12638463)
.moodSound(moodSound)
.build())
.build();
}
} | [
"513508220@qq.com"
] | 513508220@qq.com |
272c431b7e383554dbce62adf17dc5cf98962ac5 | ea6cb764a6dc464c11c6aca0a9b9f46af59e0faa | /blog-sso-cas-server/src/main/java/com/popjun/sso/cas/server/config/captcha/RememberMeCaptchaWebflowConfigurer.java | e8180d9e0d07947c0f2f350649e208dd80a719bc | [] | no_license | popJun/popJun-blog | f0c0857c33e650bda518d69f78e913f2f94152a5 | ae3a1cd9946bc11a5da166abba1824d77674a018 | refs/heads/master | 2023-03-10T17:17:55.587452 | 2023-02-20T06:09:08 | 2023-02-20T06:09:08 | 175,112,820 | 0 | 0 | null | 2022-06-21T01:07:29 | 2019-03-12T01:37:40 | CSS | UTF-8 | Java | false | false | 2,117 | java | package com.popjun.sso.cas.server.config.captcha;
import org.apereo.cas.authentication.UsernamePasswordCredential;
import org.apereo.cas.configuration.CasConfigurationProperties;
import org.apereo.cas.web.flow.configurer.DefaultLoginWebflowConfigurer;
import org.springframework.context.ApplicationContext;
import org.springframework.webflow.definition.registry.FlowDefinitionRegistry;
import org.springframework.webflow.engine.Flow;
import org.springframework.webflow.engine.ViewState;
import org.springframework.webflow.engine.builder.BinderConfiguration;
import org.springframework.webflow.engine.builder.support.FlowBuilderServices;
/**
* 主要继承DefaultWebflowConfigurer 重写 createRememberMeAuthnWebflowConfig
* 修改自带的RememberMeUsernamePasswordCredential为继承的RememberMeUsernamePasswordCaptchaCredential(配置记住我后)
* 没有配置记住我 修改 UsernamePasswordCredential
* 并且加上cpacha的bind。
*/
public class RememberMeCaptchaWebflowConfigurer extends DefaultLoginWebflowConfigurer {
public RememberMeCaptchaWebflowConfigurer(FlowBuilderServices flowBuilderServices, FlowDefinitionRegistry flowDefinitionRegistry, ApplicationContext applicationContext, CasConfigurationProperties casProperties) {
super(flowBuilderServices, flowDefinitionRegistry, applicationContext, casProperties);
}
@Override
protected void createRememberMeAuthnWebflowConfig(Flow flow) {
if (this.casProperties.getTicket().getTgt().getRememberMe().isEnabled()) {
this.createFlowVariable(flow, "credential", RememberMeUsernamePasswordCaptchaCredential.class);
ViewState state = (ViewState)this.getState(flow, "viewLoginForm", ViewState.class);
BinderConfiguration cfg = this.getViewStateBinderConfiguration(state);
cfg.addBinding(new BinderConfiguration.Binding("rememberMe", (String)null, false));
cfg.addBinding(new BinderConfiguration.Binding("captcha",null,true));
} else {
this.createFlowVariable(flow, "credential", UsernamePasswordCredential.class);
}
}
}
| [
"popi@qq.com"
] | popi@qq.com |
f425361248a3b685a304e8f14d0e98fb252b6639 | 806a56ce44367d596ce1602db87c8244d37cc73d | /repos/Message.java | 6ae31f25328588baffdca725eadfab80ff7f4c90 | [] | no_license | bfhd/JEngine | 3c73d44485f1c7cd65fc3769f59ffd6147bf2ab8 | 1cba222fe8c8224f93cce1103864d1300794962a | refs/heads/master | 2021-05-26T21:09:39.284523 | 2010-09-22T18:35:45 | 2010-09-22T18:35:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,256 | java | package repos;
import java.util.Set;
import java.util.Collections;
/** A business entity class representing an HL7 Message.
*
* @author Jacek Zagorski
* @since 1.0
* @hibernate.class table="MESSAGE"
*/
public class Message {
/** This Messages's identifier field.
*/
private long id;
private String sendingApp;
private String receiveApp;
private String receiveFac;
private String msgTimestamp;
private String msgType;
private String msgControlId;
private Report report;
/** The getter method for this Messages's identifier.
*
* @hibernate.id generator-class="native"
*/
public long getId() {
return(id);
}
/** The setter method for this Messages's identifier.
*/
public void setId(long lId) {
id = lId;
}
/** The getter method for this Messages's messageControlId.
* @hibernate.property
*/
public String getSendingApp() {
return(sendingApp);
}
/** The setter method for this Message's messageControlId.
*/
public void setSendingApp(String s) {
sendingApp = s;
}
/** The getter method for this Messages's messageControlId.
* @hibernate.property
*/
public String getReceiveApp() {
return(receiveApp);
}
/** The setter method for this Message's messageControlId.
*/
public void setReceiveApp(String s) {
receiveApp = s;
}
/** The getter method for this Messages's messageControlId.
* @hibernate.property
*/
public String getReceiveFac() {
return(receiveFac);
}
/** The setter method for this Message's messageControlId.
*/
public void setReceiveFac(String s) {
receiveFac = s;
}
/** The getter method for this Messages's messageControlId.
* @hibernate.property
*/
public String getMsgTimestamp() {
return(msgTimestamp);
}
/** The setter method for this Message's messageControlId.
*/
public void setMsgTimestamp(String s) {
msgTimestamp = s;
}
/** The getter method for this Messages's messageControlId.
* @hibernate.property
*/
public String getMsgType() {
return(msgType);
}
/** The setter method for this Message's messageControlId.
*/
public void setMsgType(String s) {
msgType = s;
}
/** The getter method for this Messages's messageControlId.
* @hibernate.property
*/
public String getMsgControlId() {
return(msgControlId);
}
/** The setter method for this Message's messageControlId.
*/
public void setMsgControlId(String s) {
msgControlId = s;
}
public Report getReport() {
return(report);
}
public void setReport(Report r) {
report = r;
}
public String toString() {
StringBuffer sb = new StringBuffer();
sb.append("Message {id=" + id);
sb.append(",sendingApp=" + sendingApp);
sb.append(",receiveApp=" + receiveApp);
sb.append(",receiveFac=" + receiveFac);
sb.append(",msgTimestamp=" + msgTimestamp);
sb.append(",msgType=" + msgType);
sb.append(",msgControlId=" + msgControlId);
sb.append("}");
return sb.toString();
}
}
| [
"jaz@shastanetworks.com"
] | jaz@shastanetworks.com |
cfdae81e88d89f6e4f73f2ecbe32360baf14aa2a | f1534c46d0f9d0698d5458c7fdd026bfdd0d18e3 | /src/main/java/web/FindEmpServlet.java | 34313f2c36920d58fdd62140e6e0fc21ce5c3da3 | [] | no_license | liurenyou/JSP | 0e8e6f0457ee5e12391b52ce75863fe42d7e7bd0 | 5352d77e5fe371a1ffe83c9af0d478f7ac8f4df2 | refs/heads/master | 2020-03-17T14:41:29.819634 | 2018-05-16T14:58:47 | 2018-05-16T14:58:47 | 133,682,741 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 933 | java | package web;
import java.io.IOException;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import dao.EmpDao;
import entity.Emp;
public class FindEmpServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
@Override
protected void service(
HttpServletRequest req,
HttpServletResponse res)
throws ServletException, IOException {
//查询所有的员工
EmpDao dao = new EmpDao();
List<Emp> list = dao.findAll();
//转发:请求没处理完,而是转交给jsp继续完成
//1)将数据绑定到request上
req.setAttribute("emps", list);
//2)将请求转发给jsp,并将request和
//response一起给jsp
//当前:/jsp2/findEmp
//目标:/jsp2/emp_list.jsp
req.getRequestDispatcher(
"emp_list.jsp").forward(req, res);
}
}
| [
"493627437@qq.com"
] | 493627437@qq.com |
3aa8cce55f9d10f2b7b3190afa529e28898c7385 | a31ed9b3fd7b4c49bc71b410a481edd5117a9357 | /src/main/java/com/bcms/service/impl/BaseServiceImpl.java | a23439fb2604a9e00ae74950c7d18770431044c8 | [] | no_license | JackieCheung/Card-Packet | 851d629593a7bde5003948e03828d970b7e97f40 | 37784936be599db8fc4a454b4974534b6d6af7fd | refs/heads/master | 2020-06-02T15:31:37.107803 | 2019-10-18T08:41:53 | 2019-10-18T08:41:53 | 191,209,552 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,879 | java | package com.bcms.service.impl;
import com.bcms.common.PageableBuilder;
import com.bcms.repository.BaseRepository;
import com.bcms.service.BaseService;
import org.springframework.data.domain.Page;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.transaction.annotation.Transactional;
import java.io.Serializable;
import java.util.List;
import java.util.Optional;
/**
* @className BaseServiceImpl
* @descrition 公共业务逻辑接口抽象实现类,专门用于继承
* @author Jackie
* @date 2018/12/22 15:56
*/
@Transactional(rollbackFor = Exception.class)
public abstract class BaseServiceImpl<T extends Serializable, PK extends Serializable> implements BaseService<T, PK> {
private BaseRepository<T, PK> baseRepository;
// private Class<T> clazz;
// @SuppressWarnings("unchecked")
// /**
// * 构造函数
// *
// * @param baseRepository 公共数据访问接口
// */
// public BaseServiceImpl(BaseRepository<T, PK> baseRepository) {
// this.baseRepository = baseRepository;
//// // 得到泛型化的超类(返回值为参数化类型,即泛型)
//// ParameterizedType pType = (ParameterizedType) this.getClass().getGenericSuperclass();
//// // 获取泛型中的第一个参数
//// this.clazz = (Class<T>) pType.getActualTypeArguments()[0];
// }
/**
* 新增或修改对象
*
* @param entity 实体
* @return T
*/
@Override
public T save(T entity) {
return baseRepository.save(entity);
}
/**
* 根据id查找对应的对象
*
* @param id 实体id
* @return Optional<T>
*/
@Override
@Transactional(readOnly = true, rollbackFor = Exception.class)
public Optional<T> findById(PK id) {
return baseRepository.findById(id);
}
/**
* 根据id判断对象是否存在
*
* @param id 实体id
* @return boolean
*/
@Override
@Transactional(readOnly = true, rollbackFor = Exception.class)
public boolean existsById(PK id) {
return baseRepository.existsById(id);
}
/**
* 根据id删除相应的对象
*
* @param id 实体id
*/
@Override
public void deleteById(PK id) {
baseRepository.deleteById(id);
}
/**
* 根据多个id删除相应的对象
*
* @param ids 实体id
*/
@Override
public void deleteByIds(PK[] ids) {
baseRepository.deleteByIds(ids);
}
/**
* 根据id集合查询相应的对象
*
* @param ids id集合
* @return List<T>
*/
@Override
public List<T> findAllById(Iterable<PK> ids) {
return baseRepository.findAllById(ids);
}
/**
* 查询所有对象
*
* @return List<T>
*/
@Override
@Transactional(readOnly = true, rollbackFor = Exception.class)
public List<T> findAll() {
return baseRepository.findAll();
}
/**
* 分页查询所有对象
*
* @param pageableBuilder 分页构造器
* @return Page<T>
*/
@Override
@Transactional(readOnly = true, rollbackFor = Exception.class)
public Page<T> findAll(PageableBuilder pageableBuilder) {
return baseRepository.findAll(pageableBuilder.getPageable());
}
/**
* 分页+条件查询所有对象
*
* @param spec 条件
* @param pageableBuilder 分页构造器
* @return Page<T>
*/
@Override
@Transactional(readOnly = true, rollbackFor = Exception.class)
public Page<T> findAll(Specification<T> spec, PageableBuilder pageableBuilder) {
return baseRepository.findAll(spec, pageableBuilder.getPageable());
}
public void setBaseRepository(BaseRepository<T, PK> baseRepository) {
this.baseRepository = baseRepository;
}
}
| [
"16275507@qq.com"
] | 16275507@qq.com |
2218e1b88b2bf1d20a758e0aafd35461492770d2 | 7686192b3d22e9c13aee98fd5fd3c4a3be0727a6 | /src/main/java/frc/robot/mapping/Point.java | bfc25c3a9dc5cc793a0287492cf0c24905b7054f | [] | no_license | titan2022/FRC-2021-JAVA | 508b787cf6ce4a471b2ad5e50c7fc6a027ebc634 | b1596404be83bd1fdaed05bddcb09a2ec24f5f79 | refs/heads/master | 2023-07-12T03:56:05.386683 | 2021-04-04T22:35:45 | 2021-04-04T22:35:45 | 280,906,341 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,753 | java | package frc.robot.mapping;
import edu.wpi.first.wpilibj.geometry.Rotation2d;
import edu.wpi.first.wpilibj.geometry.Translation2d;
/**
* A point on a 2D cartesian plane.
*/
public class Point extends Translation2d {
/**
* Creates a point with specified cartesian coordinates.
*
* @param x The x coordinate of this point.
* @param y The y coordinate of this point.
*/
public Point(double x, double y){
super(x, y);
}
/**
* Creates a point from polar coordinates
*
* @param r The distance from the origin to the point.
* @param theta The angle from the positive x-axis to the vector from the
* origin to the point.
*/
public Point(double r, Rotation2d theta) {
this(theta.getCos() * r, theta.getSin() * r);
}
/** Creates a point from a Translation2d.
*
* @param translation The translation to create this Point from.
*/
public Point(Translation2d translation) {
this(translation.getX(), translation.getY());
}
/**
* Computes the angle between three points.
*
* @param base The point defining the ray the angle is measured from.
* @param vertex The point defining the common endpoint of the rays
* forming the angle to measure.
* @param leg The point defining the ray the angle is measured to.
* @return The signed angle from the ray from {@code vertex} to {@code base}
* to the ray from {@code vertex} to {@code leg}.
*/
public static Rotation2d getAngle(Point base, Point vertex, Point leg) {
return leg.minus(vertex).getAngle().minus(base.minus(vertex).getAngle());
}
/** Returns the polar angle of this Point. */
public Rotation2d getAngle() {
return new Rotation2d(getX(), getY());
}
@Override
public Point plus(Translation2d other) {
return new Point(getX() + other.getX(), getY() + other.getY());
}
@Override
public Point minus(Translation2d other) {
return new Point(getX() - other.getX(), getY() - other.getY());
}
@Override
public Point unaryMinus() {
return new Point(-getX(), -getY());
}
@Override
public Point rotateBy(Rotation2d other) {
return new Point(getX()*other.getCos() - getY()*other.getSin(),
getX()*other.getSin() + getY()*other.getCos());
}
@Override
public Point times(double scalar) {
return new Point(getX()*scalar, getY()*scalar);
}
@Override
public Point div(double scalar) {
return new Point(getX()/scalar, getY()/scalar);
}
@Override
public String toString() {
return String.format("Point(%.2f, %.2f)", getX(), getY());
}
@Override
public boolean equals(Object o) {
if(o instanceof Translation2d)
return getDistance((Translation2d) o) < 0.00001;
return super.equals(o);
}
} | [
"cbplepel@gmail.com"
] | cbplepel@gmail.com |
fe3ed64e04e8c6c63dcfd527ae85e24a0aca7731 | 9aa4cbfa36884e112285c292123a227c5e77bd22 | /Backend/src/main/java/edu/northeastern/oneworld/services/AdminService.java | 347412e1350fd432fd983e24bd2b1cdb1db8a9db | [] | no_license | riddhiKakadiya/Trip-Planner | 51ab02a8806ee1fc292635d3898164adcb1126f4 | 45bbb29ce5bc3e383faf7d400fe3fc681d293d76 | refs/heads/master | 2020-03-25T01:35:25.669433 | 2018-08-08T15:42:06 | 2018-08-08T15:42:06 | 143,244,919 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,057 | java | package edu.northeastern.oneworld.services;
import java.util.Optional;
import com.google.gson.Gson;
import edu.northeastern.oneworld.models.*;
import edu.northeastern.oneworld.repositories.UserLikeRepository;
import org.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import edu.northeastern.oneworld.repositories.AdminRepository;
import edu.northeastern.oneworld.repositories.UserRepository;
@RestController
@CrossOrigin(origins = {"*"})
public class AdminService {
@Autowired
UserRepository userRepository;
@Autowired
AdminRepository adminRespository;
@Autowired
UserLikeRepository userLikeRepository;
/**
* Method to create a new user
*
* @param json user object
* @return user
*/
@PostMapping("/api/admin")
public Admin createAdmin(@RequestBody String json) {
Gson gson = new Gson();
Admin admin = gson.fromJson(json, Admin.class);
return adminRespository.save(admin);
}
}
| [
"kamlesh.r@husky.neu.edu"
] | kamlesh.r@husky.neu.edu |
820ed9de9775f8d9f9c0116de771f775bdf58264 | a1a29afc5b5067d44d58600bc3c2af13db62374a | /app/src/main/java/com/example/zyfypt_229/fragments/CBaseFragment.java | 09ae7e7cce840c88f6edbc1a64b182d43f18777e | [] | no_license | echo2000929/111 | cce35b218599c9d545f6a1135254285975dc1cd2 | 2b6f7b1f0ca9026e5e2cd48320f86ca577030c67 | refs/heads/master | 2022-10-12T08:34:33.273929 | 2020-06-12T14:20:59 | 2020-06-12T14:20:59 | 262,087,273 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,210 | java | package com.example.zyfypt_229.fragments;
import android.content.Context;
import android.content.SharedPreferences;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
public class CBaseFragment extends Fragment {
private final String KEY_SESSION_ID = "sessionID";//与sharedpreferences保存的关键字一致
private final String KEY_USERNAME = "username";//与sharedpreferences保存的关键字一致
private final String FILE = "login";//与sharedpreferences的文件名一致
private final int MODE = Context.MODE_PRIVATE;
private SharedPreferences sharedPreferences;
protected Context context;
//Fragment生命周期方法,在Fragment与Activity建立联系的时候调用的
@Override
public void onAttach(@NonNull Context context) {
super.onAttach(context);
this.context = context;
sharedPreferences = context.getSharedPreferences(FILE, MODE);
}
//返回sessionid
protected String getSessionId(){
return sharedPreferences.getString(KEY_SESSION_ID, "");
}
//返回username
protected String getUserName(){
return sharedPreferences.getString(KEY_USERNAME, "");
}
}
| [
"64973959+echo2000929@users.noreply.github.com"
] | 64973959+echo2000929@users.noreply.github.com |
5330d6649bb698db086996c9fa4491628177582a | 2262b4b5c1ceb77c07b950e3de78d9ea883cd1aa | /common/app/jskills/trueskill/TruncatedGaussianCorrectionFunctions.java | 34d576cb04b102b7707341357df908343f171401 | [] | no_license | DailySoccer/EpicEleven | b1e2a26ed9d76e4f6514ab78dd82d953e0ec5808 | d3e3877156cab6dca66b41f44e1f07dd0690de07 | refs/heads/master | 2021-03-27T11:54:31.734856 | 2017-01-09T08:13:08 | 2017-01-09T08:13:08 | 18,361,409 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,059 | java | package jskills.trueskill;
import static jskills.numerics.GaussianDistribution.*;
/**
* These functions are from the bottom of page 4 of the TrueSkill paper.
*/
public class TruncatedGaussianCorrectionFunctions {
private TruncatedGaussianCorrectionFunctions() {}
/**
* The "V" function where the team performance difference is greater than the draw margin.
* <remarks>In the reference F# implementation, this is referred to as "the additive
* correction of a single-sided truncated Gaussian with unit variance."</remarks>
*
* @param teamPerformanceDifference
* @param drawMargin In the paper, it's referred to as just "ε".
* @returns
*/
public static double vExceedsMargin(double teamPerformanceDifference, double drawMargin, double c) {
return vExceedsMargin(teamPerformanceDifference / c, drawMargin / c);
}
public static double vExceedsMargin(double teamPerformanceDifference, double drawMargin) {
double denominator = cumulativeTo(teamPerformanceDifference - drawMargin);
if (denominator < 2.222758749e-162)
return -teamPerformanceDifference + drawMargin;
return at(teamPerformanceDifference - drawMargin)/denominator;
}
/**
* The "W" function where the team performance difference is greater than the draw margin.
* <remarks>In the reference F# implementation, this is referred to as "the multiplicative
* correction of a single-sided truncated Gaussian with unit variance."</remarks>
*
* @param teamPerformanceDifference
* @param drawMargin
* @param c
* @returns
*/
public static double wExceedsMargin(double teamPerformanceDifference, double drawMargin, double c) {
return wExceedsMargin(teamPerformanceDifference / c, drawMargin / c);
//var vWin = vExceedsMargin(teamPerformanceDifference, drawMargin, c);
//return vWin * (vWin + (teamPerformanceDifference - drawMargin) / c);
}
public static double wExceedsMargin(double teamPerformanceDifference, double drawMargin) {
double denominator = cumulativeTo(teamPerformanceDifference - drawMargin);
if (denominator < 2.222758749e-162) {
if (teamPerformanceDifference < 0.0)
// FIX: Temporal
return 0.9999;
else
return 0.0;
}
double vWin = vExceedsMargin(teamPerformanceDifference, drawMargin);
return vWin*(vWin + teamPerformanceDifference - drawMargin);
}
// the additive correction of a double-sided truncated Gaussian with unit variance
public static double vWithinMargin(double teamPerformanceDifference, double drawMargin, double c) {
return vWithinMargin(teamPerformanceDifference / c, drawMargin / c);
}
// from F#:
public static double vWithinMargin(double teamPerformanceDifference, double drawMargin) {
double teamPerformanceDifferenceAbsoluteValue = Math.abs(teamPerformanceDifference);
double denominator = cumulativeTo(drawMargin - teamPerformanceDifferenceAbsoluteValue) -
cumulativeTo(-drawMargin - teamPerformanceDifferenceAbsoluteValue);
if (denominator < 2.222758749e-162) {
if (teamPerformanceDifference < 0.0) {
return -teamPerformanceDifference - drawMargin;
}
return -teamPerformanceDifference + drawMargin;
}
double numerator = at(-drawMargin - teamPerformanceDifferenceAbsoluteValue) -
at(drawMargin - teamPerformanceDifferenceAbsoluteValue);
if (teamPerformanceDifference < 0.0) {
return -numerator/denominator;
}
return numerator/denominator;
}
// the multiplicative correction of a double-sided truncated Gaussian with unit variance
public static double wWithinMargin(double teamPerformanceDifference, double drawMargin, double c) {
return wWithinMargin(teamPerformanceDifference / c, drawMargin / c);
}
// From F#:
public static double wWithinMargin(double teamPerformanceDifference, double drawMargin) {
double teamPerformanceDifferenceAbsoluteValue = Math.abs(teamPerformanceDifference);
double denominator = cumulativeTo(drawMargin - teamPerformanceDifferenceAbsoluteValue) -
cumulativeTo(-drawMargin - teamPerformanceDifferenceAbsoluteValue);
if (denominator < 2.222758749e-162) {
return 1.0;
}
double vt = vWithinMargin(teamPerformanceDifferenceAbsoluteValue, drawMargin);
return vt*vt +
(
(drawMargin - teamPerformanceDifferenceAbsoluteValue)
*
at(
drawMargin - teamPerformanceDifferenceAbsoluteValue)
- (-drawMargin - teamPerformanceDifferenceAbsoluteValue)
*
at(-drawMargin - teamPerformanceDifferenceAbsoluteValue))/denominator;
}
} | [
"ximo.m.albors@gmail.com"
] | ximo.m.albors@gmail.com |
2f9df259d180f5e26b36c3edcc57efd60d71d388 | 925bc93135c98d9d9a2040d6407e7a54003f9d5f | /backend/java/src/Array2.java | f41c624dab094a949c67ca0aa25a56bcfa591a59 | [] | no_license | AparnnaKallarackal/TY_CG_HTD_BangaloreNovember_JFS_AparnnaKs | a526c47a650a9b5e0abb3d163fc789e3afcfa55d | 71b067d0754192663d00d03cd26fa5b57058ff32 | refs/heads/master | 2020-09-24T21:22:19.364642 | 2019-12-22T06:10:25 | 2019-12-22T06:10:25 | 225,846,231 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 332 | java |
public class Array2 {
public static void main(String[] args) {
double[] a=new double[3];
a[0]=10.0;
a[1]=20.0;
for(int i=0;i<3;i++)
System.out.println(a[i]);
String[] s=new String[4];
s[0]="mammu";
s[1]="appu";
s[2]="pravvi";
for(int j=0;j<3;j++)
System.out.println(s[j]);
}
}
| [
"apkallarackal12@gmail.com"
] | apkallarackal12@gmail.com |
6a5b1ba0f2a50c28f98c0963dc8bf8d76998545a | 5bbedf506a9b6b5dc753a9b6969d839432583ffa | /mantis-tests/src/test/java/ru/stqa/pft/mantis/appmanager/SoapHelper.java | cd46b24b5644c709dbba37ab7a9f9068cbd8f2b2 | [
"Apache-2.0"
] | permissive | Majkel432/Kurs_Java | 607b18859f5510a20d8e61378fd75be0b918c4d4 | 71405200c678a433a05e5439e9d9a71b65773fe4 | refs/heads/master | 2020-04-17T12:54:36.765295 | 2019-03-27T16:41:31 | 2019-03-27T16:41:31 | 166,595,606 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,521 | java | package ru.stqa.pft.mantis.appmanager;
import biz.futureware.mantis.rpc.soap.client.*;
import ru.stqa.pft.mantis.model.Issue;
import ru.stqa.pft.mantis.model.Project;
import javax.xml.rpc.ServiceException;
import java.math.BigInteger;
import java.net.MalformedURLException;
import java.net.URL;
import java.rmi.RemoteException;
import java.util.Arrays;
import java.util.Set;
import java.util.stream.Collectors;
public class SoapHelper {
private ApplicationManager app;
public SoapHelper (ApplicationManager app)
{
this.app = app;
}
public Set<Project> getProjects () throws MalformedURLException, RemoteException, ServiceException {
MantisConnectPortType mc = getMantisConnect();
ProjectData[] projects = mc.mc_projects_get_user_accessible(app.getProperty("web.adminLogin"),
app.getProperty("web.adminPassword"));
return Arrays.asList(projects).stream().map((p) -> new Project()
.withId(p.getId().intValue()).withName(p.getName()))
.collect(Collectors.toSet());
}
public MantisConnectPortType getMantisConnect() throws ServiceException, MalformedURLException {
return new MantisConnectLocator().
getMantisConnectPort(new URL(app.getProperty("soap.url")));
}
public Issue addIssue (Issue issue) throws MalformedURLException, ServiceException, RemoteException {
MantisConnectPortType mc = getMantisConnect();
String[] categories = mc.mc_project_get_categories(app.getProperty("web.adminLogin"), app.getProperty("web.adminPassword"),
BigInteger.valueOf(issue.getProject().getId()));
IssueData issueData = new IssueData();
issueData.setSummary(issue.getSummary());
issueData.setDescription(issue.getDescription());
issueData.setProject(new ObjectRef(BigInteger.valueOf(issue.getProject().getId()), issue.getProject().getName()));
issueData.setCategory(categories [0]);
BigInteger issueId = mc.mc_issue_add(app.getProperty("web.adminLogin"), app.getProperty("web.adminPassword"), issueData);
IssueData createdIssueData = mc.mc_issue_get(app.getProperty("web.adminLogin"), app.getProperty("web.adminPassword"), issueId);
return new Issue().withId(createdIssueData.getId().intValue())
.withSummary(createdIssueData.getSummary()).withDescription(createdIssueData.getDescription())
.withProject(new Project().withId(createdIssueData.getProject().getId().intValue())
.withName(createdIssueData.getProject().getName()));
}
}
| [
"46852342+Majkel432@users.noreply.github.com"
] | 46852342+Majkel432@users.noreply.github.com |
ef928845e4345758c0538e703e3fa0d358d89c71 | 1cf63abd9610f513c02af318e9d62f5b0f4a7fed | /reliable-message-final-consistency/pay-service-user/src/main/java/own/stu/distributedTransaction/pay/service/user/enums/EntryTypeEnum.java | 7959e43e78371a2afeef8506d9d472a099c48fea | [] | no_license | angelnvshen/distributed-transaction | a9c55770d65923f8fe7dcf3cbf7f26f444a8adec | 2f970b57bbd6ba126e0df63fde99fdb11429a06d | refs/heads/master | 2020-03-15T21:17:26.068090 | 2019-01-24T11:52:28 | 2019-01-24T11:52:28 | 132,351,847 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,134 | java |
package own.stu.distributedTransaction.pay.service.user.enums;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 会计分录类型
*/
public enum EntryTypeEnum {
/*2:内部转账业务相关*/
ACCOUNT_TRANSFER("内部转账",2001),
/*3:充值业务相关*/
ACCOUNT_DEPOSIT("账户充值",3001),
/*4:退款业务相关*/
NET_B2C_REFUND("B2C网银退款",4001),
NET_B2B_REFUND("B2B网银退款",4002),
DEPOSIT_REFUND("充值失败退款",4003),
FAST_REFUND("快捷支付退款",4004),
ACCOUNT_BALANCE_REFUND("余额支付退款",4005),
POS_REFUND("退货",4008),
POS_RECHARGE("POS充值",4013),
/*5:提现业务相关*/
SETTLEMENT("商户结算",5001),
ATM("会员提现",5002),
REMIT("打款",5003),
/*6:支付业务相关*/
NET_B2C_PAY("B2C网银支付",6001),
NET_B2B_PAY("B2B网银支付",6002),
FAST_PAY("快捷支付",6004),
ACCOUNT_BALANCE_PAY("余额支付",6005),
POS_PAY("消费",6006),
SPLIT_PAY("分账支付",6011),
SPLIT_REFUND("分账退款",6012),
FROZEN("冻结",6013),
UNFROZEN("解冻",6014),
AGENT_SPLIT_GROFIT("代理商分润支付",6015),
AGENT_SPLIT_GROFIT_REFUND("代理商分润退款",6016),
/*7:内部挂账业务相关*/
ACCOUNTING_HANGING("挂账" ,7001),
DAILY_OFFSET_BALANCE("日终轧差记账",7002),
MANUAL_ACCOUNTING("手工记账",7011),
/*8:内部销账业务相关*/
ACCOUNTING_INTO("进款对账",8002),
ACCOUNTING_OUT("出款对账", 8003),
ACCOUNTING_COST("成本记账", 8004),
FINANCE_SUM("会计汇总专用",8008),
/*9:内部流转业务相关*/
FUND_TRANSFER("资金调拨",9001),
/*11:调账*/
MERCHANT_RECON("商户认账",1101),
BANK_MORE_PLAT_RECON("银行长款平台认账",1102),
BANK_LESS_PLAT_RECON("银行短款平台认账",1103),
BANK_MORE_NOT_MATCH_BANK_RECON("银行长款金额不符银行认账",1104),
CASH_PAY_RECON("现金支付入账",1105);
/** 枚举值 */
private int value;
/** 描述 */
private String desc;
private EntryTypeEnum(String desc, int value) {
this.value = value;
this.desc = desc;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public void setValue(int value) {
this.value = value;
}
public int getValue() {
return value;
}
public static EntryTypeEnum getEnum(int value){
EntryTypeEnum resultEnum=null;
EntryTypeEnum[] enumAry=EntryTypeEnum.values();
for(int i=0;i<enumAry.length;i++){
if(enumAry[i].getValue()==value){
resultEnum=enumAry[i];
break;
}
}
return resultEnum;
}
public static Map<String, Map<String, Object>> toMap() {
EntryTypeEnum[] ary = EntryTypeEnum.values();
Map<String, Map<String, Object>> enumMap = new HashMap<String, Map<String, Object>>();
for (int num = 0; num < ary.length; num++) {
Map<String, Object> map = new HashMap<String, Object>();
String key = String.valueOf(getEnum(ary[num].getValue()));
map.put("value", String.valueOf(ary[num].getValue()));
map.put("desc", ary[num].getDesc());
enumMap.put(key, map);
}
return enumMap;
}
@SuppressWarnings({ "rawtypes", "unchecked" })
public static List toList(){
EntryTypeEnum[] ary = EntryTypeEnum.values();
List list = new ArrayList();
for(int i=0;i<ary.length;i++){
Map<String,String> map = new HashMap<String,String>();
map.put("value",String.valueOf(ary[i].getValue()));
map.put("desc", ary[i].getDesc());
list.add(map);
}
return list;
}
/**
* 取枚举的json字符串
* @return
*/
public static String getJsonStr(){
EntryTypeEnum[] enums = EntryTypeEnum.values();
StringBuffer jsonStr = new StringBuffer("[");
for (EntryTypeEnum senum : enums) {
if(!"[".equals(jsonStr.toString())){
jsonStr.append(",");
}
jsonStr.append("{id:'")
.append(senum)
.append("',desc:'")
.append(senum.getDesc())
.append("',value:'")
.append(senum.getValue())
.append("'}");
}
jsonStr.append("]");
return jsonStr.toString();
}
}
| [
"angelnvshen@163.com"
] | angelnvshen@163.com |
8b7781cd54237db28239c446a87c1444b00e2237 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/5/5_07fa796cfe7c9a2a48d1592a30d3ba09c5c05c49/WifiChange/5_07fa796cfe7c9a2a48d1592a30d3ba09c5c05c49_WifiChange_s.java | fbdad29f86eb957e22a73c8f42272886154b8079 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 2,916 | java | package com.gingbear.githubtest;
import android.app.Activity;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.wifi.WifiManager;
public class WifiChange {
static public String check(Intent intent){
String action = intent.getAction();
// BroadcastReceiver が Wifi の ON/OFF を検知して起動されたら
if(action.equals(WifiManager.WIFI_STATE_CHANGED_ACTION)){
// WifiManager wifi = (WifiManager)getSystemService(WIFI_SERVICE);
// // Wifi が ON になったら OFF
// wifi.setWifiEnabled(false);
// 任意のタイミングで ON/OFF の状態を取得したい場合 wifi.isWifiEnabled(); で取得する
// Wifi の状態を取得
switch (intent.getIntExtra(WifiManager.EXTRA_WIFI_STATE, WifiManager.WIFI_STATE_UNKNOWN)){
case WifiManager.WIFI_STATE_DISABLING:
return "0:WIFI_STATE_DISABLING";
case WifiManager.WIFI_STATE_DISABLED:
return "1:WIFI_STATE_DISABLED";
case WifiManager.WIFI_STATE_ENABLING:
return "3:WIFI_STATE_ENABLING";
case WifiManager.WIFI_STATE_ENABLED:
return "4:WIFI_STATE_ENABLED";
case WifiManager.WIFI_STATE_UNKNOWN:
return "5:WIFI_STATE_UNKNOWN";
default:
return "wifi error";
}
}
return "non";
}
static public String change(Activity activity){
Intent intent = activity.getIntent();
String action = intent.getAction();
// BroadcastReceiver がネットワークへの接続を検知して起動されたら
if(action.equals(WifiManager.NETWORK_STATE_CHANGED_ACTION)){
ConnectivityManager cm = (ConnectivityManager)activity.getSystemService(Activity.CONNECTIVITY_SERVICE);
NetworkInfo ni = cm.getActiveNetworkInfo();
if((ni!=null) && (ni.isConnected() && (ni.getType() == ConnectivityManager.TYPE_WIFI))){
switch (ni.getType() ){
case ConnectivityManager.TYPE_WIFI:
return "1:TYPE_WIFI";
case ConnectivityManager.TYPE_MOBILE:
return "0:TYPE_MOBILE";
case ConnectivityManager.TYPE_MOBILE_DUN:
return "4:TYPE_MOBILE_DUN";
case ConnectivityManager.TYPE_MOBILE_HIPRI:
return "5:TYPE_MOBILE_HIPRI";
case ConnectivityManager.TYPE_MOBILE_MMS:
return "2:TYPE_MOBILE_MMS";
case ConnectivityManager.TYPE_MOBILE_SUPL:
return "3:TYPE_MOBILE_SUPL";
case ConnectivityManager.TYPE_WIMAX:
return "6:TYPE_WIMAX";
default:
return "connect error";
}
// Wifi に接続中!TYPE_MOBILE だったらモバイルネットワークに接続中ということになる
}else{
// WifiManager wifi = (WifiManager)getSystemService(WIFI_SERVICE);
// // Wifi に接続してなかったら Wifi を OFF
// wifi.setWifiEnabled(false);
return "not connect";
}
}
return "non";
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
84de2fe404911c46e95df54af513822396c8cf0a | 126b9e41dc268e4d8f497d718417c4b4135897c2 | /src/structural/facade/Client.java | 17bff331db68445498fa0aa3855c76c90cc97b22 | [] | no_license | parveznawaz/DesignPatternJava | e4eb00152ead332c535cd51db678140b1c975891 | 97076fa8bae621c5d0884039f55fc36cbf03d00a | refs/heads/master | 2020-12-18T15:18:24.305953 | 2020-03-05T16:22:11 | 2020-03-05T16:22:11 | 235,436,855 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 225 | java | package structural.facade;
public class Client {
public static void main(String[] args) {
ComputerFacade computer = new ComputerFacade(new CPU(), new Memory(), new HardDrive());
computer.start();
}
}
| [
"ParvezN@gs1ca.org"
] | ParvezN@gs1ca.org |
144d5e3ae9767c93fee70aef07a1f8b8692a03c3 | 665c97c705e45033f9cc9c97e6a79c92ba88030d | /library/src/main/java/com/handy/widget/dialog/Tool.java | 764f93e9e2601d24aa73ce6412479e37f01b4878 | [
"Apache-2.0"
] | permissive | BocoMobileIRMS/HandyWidget | fbfa5aa5fe459bcfbe36c0afca23463969e28b39 | 751a2e8fbc2f9efd06e608dcf744e4e76158443b | refs/heads/master | 2021-01-21T20:34:40.898004 | 2017-05-23T14:22:09 | 2017-05-23T14:22:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 17,955 | java | package com.handy.widget.dialog;
import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.os.Build;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.CheckedTextView;
import android.widget.ListView;
import com.handy.widget.R;
import com.handy.widget.dialog.config.ConfigBean;
import com.handy.widget.dialog.config.DefaultConfig;
/**
* Created by Administrator on 2016/10/9 0009.
*/
public class Tool {
/**
* 解决badtoken问题,一劳永逸
*
* @param dialog
*/
public static void showDialog(final Dialog dialog, final ConfigBean bean) {
StyledDialog.getMainHandler().post(new Runnable() {
@Override
public void run() {
try {
dialog.show();
if (bean.alertDialog != null) {
setMdBtnStytle(bean);
//setListItemsStyle(bean);
}
adjustWindow(dialog, bean);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
private static void adjustWindow(final Dialog dialog, final ConfigBean bean) {
dialog.getWindow().getDecorView().getViewTreeObserver()
.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
adjustWH(dialog, bean);
dialog.getWindow().getDecorView().getViewTreeObserver().removeGlobalOnLayoutListener(this);
}
});
}
/**
* 必须在show之后,button才不会返回null
*
* @param bean
*/
public static void setMdBtnStytle(ConfigBean bean) {
Button btnPositive =
bean.alertDialog.getButton(DialogInterface.BUTTON_POSITIVE);
Button btnNegative =
bean.alertDialog.getButton(DialogInterface.BUTTON_NEGATIVE);
Button btnNatural =
bean.alertDialog.getButton(DialogInterface.BUTTON_NEUTRAL);
//todo null
if (btnPositive != null) {
if (TextUtils.isEmpty(bean.text1)) {
btnPositive.setText(bean.text1);
}
if (bean.btn1Color > 0)
btnPositive.setTextColor(getColor(null, bean.btn1Color));
if (bean.btnTxtSize > 0) {
btnPositive.setTextSize(bean.btnTxtSize);
}
}
if (btnNegative != null) {
if (TextUtils.isEmpty(bean.text2)) {
btnNegative.setText(bean.text2);
}
if (bean.btn2Color > 0)
if (bean.btn2Color == DefaultConfig.iosBtnColor) {
btnNegative.setTextColor(getColor(null, R.color.hdw_dialog_text_gray));
} else {
btnNegative.setTextColor(getColor(null, bean.btn2Color));
}
if (bean.btnTxtSize > 0) {
btnNegative.setTextSize(bean.btnTxtSize);
}
}
if (btnNatural != null) {
if (TextUtils.isEmpty(bean.text3)) {
btnNatural.setText(bean.text3);
}
if (bean.btn3Color > 0)
btnNatural.setTextColor(getColor(null, bean.btn3Color));
if (bean.btnTxtSize > 0) {
btnNatural.setTextSize(bean.btnTxtSize);
}
}
}
public static ConfigBean fixContext(ConfigBean bean) {
if (bean.context instanceof Activity) {
Activity activity1 = (Activity) bean.context;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
if (!activity1.isDestroyed()) {
return bean;
}
} else {
return bean;
}
}
Activity activity = StyledDialogManager.getInstance().getCurrentActivity();
if (activity != null) {
bean.context = activity;
return bean;
}
if (bean.context == null) {
bean.context = StyledDialog.context;
}
if (bean.context instanceof Activity) {
Activity activity1 = (Activity) bean.context;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
if (activity1.isDestroyed()) {
bean.context = StyledDialog.context;
}
}
}
return bean;
}
public static ConfigBean newCustomDialog(ConfigBean bean) {
Dialog dialog = new Dialog(bean.context);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
bean.dialog = dialog;
return bean;
}
public static ConfigBean setCancelable(ConfigBean bean) {
if (bean.alertDialog != null) {
bean.alertDialog.setCancelable(bean.cancelable);
bean.alertDialog.setCanceledOnTouchOutside(bean.outsideTouchable);
bean.alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
} else if (bean.dialog != null) {
bean.dialog.setCancelable(bean.cancelable);
bean.dialog.setCanceledOnTouchOutside(bean.outsideTouchable);
bean.dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
}
return bean;
}
public static Dialog buildDialog(Context context, boolean cancleable, boolean outsideTouchable) {
if (context instanceof Activity) {//todo keycode
Activity activity = (Activity) context;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
if (activity.isDestroyed()) {
context = StyledDialog.context;
}
}
}
Dialog dialog = new Dialog(context);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setCancelable(cancleable);
dialog.setCanceledOnTouchOutside(outsideTouchable);
return dialog;
}
public static void adjustStyle(ConfigBean bean) {
/*if (bean.alertDialog!= null){
//setMdBtnStytle(bean);
//setListItemsStyle(bean);
// adjustStyle(bean.context,bean.dialog,bean.viewHeight,bean);
}else {
adjustWH(bean.context,bean.dialog,bean.viewHeight,bean);
}*/
setBg(bean);
// bean.isTransparentBehind = true;
setDim(bean);
Dialog dialog = bean.dialog == null ? bean.alertDialog : bean.dialog;
Window window = dialog.getWindow();
window.setGravity(bean.gravity);
if (bean.context instanceof Activity) {
} else {
window.setType(WindowManager.LayoutParams.TYPE_TOAST);
//todo keycode to improve window level,同时要让它的后面半透明背景也拦截事件,不要传递到下面去
//todo 单例化,不然连续弹出两次,只能关掉第二次的
}
}
private static void setDim(ConfigBean bean) {
if (bean.type == DefaultConfig.TYPE_IOS_LOADING) {//转菊花,则让背景透明
bean.isTransparentBehind = true;
}
if (bean.alertDialog != null) {
if (bean.isTransparentBehind) {
bean.alertDialog.getWindow().setDimAmount(0);
}
bean.alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
} else {
if (bean.isTransparentBehind) {
bean.dialog.getWindow().setDimAmount(0);
}
bean.dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
}
}
private static void setBg(ConfigBean bean) {
if (bean.alertDialog != null) {
bean.alertDialog.getWindow().setBackgroundDrawableResource(R.drawable.hdw_dialog_shadow);
} else {
if (bean.type == DefaultConfig.TYPE_BOTTOM_SHEET_GRID
|| bean.type == DefaultConfig.TYPE_BOTTOM_SHEET_LIST
|| bean.type == DefaultConfig.TYPE_BOTTOM_SHEET_CUSTOM
|| bean.type == DefaultConfig.TYPE_PROGRESS) {
} else if (bean.type == DefaultConfig.TYPE_IOS_LOADING) {//转菊花时,背景透明
bean.dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
} else {
bean.dialog.getWindow().setBackgroundDrawableResource(R.drawable.hdw_dialog_shadow);
}
}
if (!bean.hasShadow) {
bean.dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
}
}
private static void addShaow(ConfigBean bean) {
/**/
if (bean.type == DefaultConfig.TYPE_IOS_LOADING
|| bean.type == DefaultConfig.TYPE_PROGRESS
|| bean.type == DefaultConfig.TYPE_BOTTOM_SHEET_CUSTOM
|| bean.type == DefaultConfig.TYPE_BOTTOM_SHEET_LIST
|| bean.type == DefaultConfig.TYPE_BOTTOM_SHEET_GRID
|| bean.type == DefaultConfig.TYPE_IOS_BOTTOM) {
return;
}
Dialog dialog = bean.dialog;
if (dialog == null) {
dialog = bean.alertDialog;
}
/*ShadowProperty sp = new ShadowProperty()
.setShadowColor(0x77000000)
.setShadowDy(3)
.setShadowRadius(3)
.setShadowSide(ShadowProperty.ALL);
ShadowViewDrawable sd = new ShadowViewDrawable(sp, bean.alertDialog ==null ? Color.TRANSPARENT : Color.WHITE, 0, 0);
// ShadowViewDrawable sd = new ShadowViewDrawable(sp,Color.TRANSPARENT, 0, 0);
ViewCompat.setBackground(dialog.getWindow().getDecorView(), sd);
ViewCompat.setLayerType(dialog.getWindow().getDecorView(), ViewCompat.LAYER_TYPE_SOFTWARE, null);*/
/* ShadowViewHelper.bindShadowHelper(
new ShadowProperty()
.setShadowColor(0x77000000)
.setShadowDy(3)
.setShadowRadius(3)
, dialog.getWindow().getDecorView());*/
}
private static void setListItemsStyle(ConfigBean bean) {
if (bean.type == DefaultConfig.TYPE_MD_SINGLE_CHOOSE || bean.type == DefaultConfig.TYPE_MD_MULTI_CHOOSE) {
ListView listView = bean.alertDialog.getListView();
// listView.getAdapter().
if (listView != null && listView.getAdapter() != null) {
int count = listView.getChildCount();
for (int i = 0; i < count; i++) {
View childAt = listView.getChildAt(i);
if (childAt == null) {
continue;
}
CheckedTextView itemView = (CheckedTextView) childAt.findViewById(android.R.id.text1);
Log.e("dd", itemView + "-----" + i);
if (itemView != null) {
itemView.setCheckMarkDrawable(R.drawable.hdw_dialog_toast);
//itemView.setCheckMarkTintList();
// itemView.setCheckMarkTintList();
//itemView.setCheckMarkTintList();
}
}
}
}
}
public static void adjustWH(Dialog dialog, ConfigBean bean) {
if (dialog == null) {
return;
}
Window window = dialog.getWindow();
View rootView = window.getDecorView();
//window.setWindowAnimations(R.style.dialog_center);
WindowManager.LayoutParams wl = window.getAttributes();
int width = window.getWindowManager().getDefaultDisplay().getWidth();
int height = window.getWindowManager().getDefaultDisplay().getHeight();
int measuredHeight = rootView.getMeasuredHeight();
float ratio = 0.85f;
if (bean.type == DefaultConfig.TYPE_IOS_BOTTOM) {
ratio = 0.95f;
} else if (bean.type == DefaultConfig.TYPE_IOS_CENTER_LIST) {
ratio = 0.9f;
}
if (width > height) {//宽屏
ratio = 0.5f;
}
if (istheTypeOfNotAdjust(bean.type)) {
/*wl.width = ViewGroup.LayoutParams.WRAP_CONTENT;
wl.height = ViewGroup.LayoutParams.WRAP_CONTENT;*/
} else {
// rootView.setPadding(0,30,0,30);
wl.width = (int) (width * ratio);
if (measuredHeight > height * 0.9) {
wl.height = (int) (height * 0.9);
}
}
dialog.onWindowAttributesChanged(wl);
}
private static boolean istheTypeOfNotAdjust(int type) {
switch (type) {
case DefaultConfig.TYPE_IOS_LOADING:
case DefaultConfig.TYPE_PROGRESS:
case DefaultConfig.TYPE_BOTTOM_SHEET_CUSTOM:
case DefaultConfig.TYPE_BOTTOM_SHEET_GRID:
case DefaultConfig.TYPE_BOTTOM_SHEET_LIST:
case DefaultConfig.TYPE_CUSTOM_VIEW:
return true;
default:
return false;
}
}
private static boolean isCustomType(ConfigBean bean) {
switch (bean.type) {
case DefaultConfig.TYPE_IOS_HORIZONTAL:
case DefaultConfig.TYPE_IOS_VERTICAL:
case DefaultConfig.TYPE_IOS_BOTTOM:
case DefaultConfig.TYPE_IOS_CENTER_LIST:
case DefaultConfig.TYPE_IOS_INPUT:
case DefaultConfig.TYPE_CUSTOM_VIEW:
case DefaultConfig.TYPE_MD_LOADING:
case DefaultConfig.TYPE_MD_ALERT:
case DefaultConfig.TYPE_MD_MULTI_CHOOSE:
case DefaultConfig.TYPE_MD_SINGLE_CHOOSE:
return true;
default:
return false;
}
}
public static void measureView(View child) {
ViewGroup.LayoutParams p = child.getLayoutParams();
if (p == null) {
p = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT
,
ViewGroup.LayoutParams.WRAP_CONTENT);
}
int lpHeight = p.height;
int lpWidth = p.width;
int childHeightSpec;
int childWidthSpec;
if (lpHeight > 0) { //如果Height是一个定值,那么我们测量的时候就使用这个定值
childHeightSpec = View.MeasureSpec.makeMeasureSpec(lpHeight,
View.MeasureSpec.EXACTLY);
} else { // 否则,我们将mode设置为不指定,size设置为0
childHeightSpec = View.MeasureSpec.makeMeasureSpec(0,
View.MeasureSpec.UNSPECIFIED);
}
if (lpWidth > 0) {
childWidthSpec = View.MeasureSpec.makeMeasureSpec(lpHeight,
View.MeasureSpec.EXACTLY);
} else {
childWidthSpec = View.MeasureSpec.makeMeasureSpec(0,
View.MeasureSpec.UNSPECIFIED);
}
child.measure(childWidthSpec, childHeightSpec);
}
/**
* @param root
* @param id height为0,weight为1的scrollview包裹的view的id,如果没有,传0或负数即可
* @return
*/
public static int mesureHeight(View root, int id) {
measureView(root);
int height = root.getMeasuredHeight();
int heightExtra = 0;
if (id > 0) {
View view = root.findViewById(id);
if (view != null) {
measureView(view);
heightExtra = view.getMeasuredHeight();
}
}
return height + heightExtra;
}
public static int mesureHeight(View root, View... subViews) {
measureView(root);
int height = root.getMeasuredHeight();
int heightExtra = 0;
if (subViews != null && subViews.length > 0) {
for (View view : subViews) {
if (view.getVisibility() == View.VISIBLE) {//确保设置了gone的view不再出现
measureView(view);
heightExtra += view.getMeasuredHeight();
}
}
}
return height + heightExtra;
}
public static int getColor(Context context, int colorRes) {
if (context == null) {
context = StyledDialog.context;
}
return context.getResources().getColor(colorRes);
}
public static void setCancelListener(final ConfigBean bean) {
if (bean.dialog != null) {
bean.dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialog) {
if (bean.listener != null) {
bean.listener.onCancle();
}
if (bean.dialog == StyledDialog.getLoadingDialog()) {
StyledDialog.setLoadingObj(null);
}
}
});
}
if (bean.alertDialog != null) {
bean.alertDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialog) {
if (bean.listener != null) {
bean.listener.onCancle();
}
if (bean.alertDialog == StyledDialog.getLoadingDialog()) {
StyledDialog.setLoadingObj(null);
}
}
});
}
}
}
| [
"liujie045.china@outlook.com"
] | liujie045.china@outlook.com |
915a9546858ff432008e237a201b396cfd6d9c93 | e7eec3fbf43de72e69770fedaa690ca313b7ddb0 | /archive/FILE/Compiler/tringle/src/Triangle/AbstractSyntaxTrees/AST.java | 2527f48c9ae6d2c13cdfa3380343758369e817a7 | [
"Apache-2.0"
] | permissive | nileshpatelksy/hello-pod-cast | 812bb79d99f9f2c15257ff0cbf10c5388b8739f9 | a2efa652735687ece13fd4297ceb0891289dc10b | refs/heads/master | 2021-01-23T19:38:48.936157 | 2010-09-21T07:59:51 | 2010-09-21T07:59:51 | 37,791,788 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 980 | java | /*
* @(#)AST.java 2.1 2003/10/07
*
* Copyright (C) 1999, 2003 D.A. Watt and D.F. Brown
* Dept. of Computing Science, University of Glasgow, Glasgow G12 8QQ Scotland
* and School of Computer and Math Sciences, The Robert Gordon University,
* St. Andrew Street, Aberdeen AB25 1HG, Scotland.
* All rights reserved.
*
* This software is provided free for educational use only. It may
* not be used for commercial purposes without the prior written permission
* of the authors.
*/
package Triangle.AbstractSyntaxTrees;
import Triangle.CodeGenerator.RuntimeEntity;
import Triangle.SyntacticAnalyzer.SourcePosition;
public abstract class AST {
public AST(SourcePosition thePosition) {
position = thePosition;
entity = null;
}
public SourcePosition getPosition() {
return position;
}
public abstract Object visit(Visitor v, Object o);
public SourcePosition position;
public RuntimeEntity entity;
}
| [
"laiqinyi@d30c3dc2-4f9b-c3f3-a29f-bdd0d6db7b56"
] | laiqinyi@d30c3dc2-4f9b-c3f3-a29f-bdd0d6db7b56 |
80c8d5592821ea90f595f27bacc3670985ec648e | a00326c0e2fc8944112589cd2ad638b278f058b9 | /src/main/java/000/146/952/CWE89_SQL_Injection__File_executeQuery_75a.java | 294bcfee18fff8743b30ab53640986752952706e | [] | no_license | Lanhbao/Static-Testing-for-Juliet-Test-Suite | 6fd3f62713be7a084260eafa9ab221b1b9833be6 | b095b11c7cb6d4a5bb2b76181e35d6ee00e96e68 | refs/heads/master | 2020-08-24T13:34:04.004149 | 2019-10-25T09:26:00 | 2019-10-25T09:26:00 | 216,822,684 | 0 | 1 | null | 2019-11-08T09:51:54 | 2019-10-22T13:37:13 | Java | UTF-8 | Java | false | false | 10,785 | java | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE89_SQL_Injection__File_executeQuery_75a.java
Label Definition File: CWE89_SQL_Injection.label.xml
Template File: sources-sinks-75a.tmpl.java
*/
/*
* @description
* CWE: 89 SQL Injection
* BadSource: File Read data from file (named c:\data.txt)
* GoodSource: A hardcoded string
* Sinks: executeQuery
* GoodSink: Use prepared statement and executeQuery (properly)
* BadSink : data concatenated into SQL statement used in executeQuery(), which could result in SQL Injection
* Flow Variant: 75 Data flow: data passed in a serialized object from one method to another in different source files in the same package
*
* */
import java.io.ByteArrayOutputStream;
import java.io.ObjectOutput;
import java.io.ObjectOutputStream;
import java.io.IOException;
import java.util.logging.Level;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.FileInputStream;
import java.io.File;
public class CWE89_SQL_Injection__File_executeQuery_75a extends AbstractTestCase
{
public void bad() throws Throwable
{
String data;
data = ""; /* Initialize data */
{
File file = new File("C:\\data.txt");
FileInputStream streamFileInput = null;
InputStreamReader readerInputStream = null;
BufferedReader readerBuffered = null;
try
{
/* read string from file into data */
streamFileInput = new FileInputStream(file);
readerInputStream = new InputStreamReader(streamFileInput, "UTF-8");
readerBuffered = new BufferedReader(readerInputStream);
/* POTENTIAL FLAW: Read data from a file */
/* This will be reading the first "line" of the file, which
* could be very long if there are little or no newlines in the file */
data = readerBuffered.readLine();
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error with stream reading", exceptIO);
}
finally
{
/* Close stream reading objects */
try
{
if (readerBuffered != null)
{
readerBuffered.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing BufferedReader", exceptIO);
}
try
{
if (readerInputStream != null)
{
readerInputStream.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing InputStreamReader", exceptIO);
}
try
{
if (streamFileInput != null)
{
streamFileInput.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing FileInputStream", exceptIO);
}
}
}
/* serialize data to a byte array */
ByteArrayOutputStream streamByteArrayOutput = null;
ObjectOutput outputObject = null;
try
{
streamByteArrayOutput = new ByteArrayOutputStream() ;
outputObject = new ObjectOutputStream(streamByteArrayOutput) ;
outputObject.writeObject(data);
byte[] dataSerialized = streamByteArrayOutput.toByteArray();
(new CWE89_SQL_Injection__File_executeQuery_75b()).badSink(dataSerialized );
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "IOException in serialization", exceptIO);
}
finally
{
/* clean up stream writing objects */
try
{
if (outputObject != null)
{
outputObject.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing ObjectOutputStream", exceptIO);
}
try
{
if (streamByteArrayOutput != null)
{
streamByteArrayOutput.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing ByteArrayOutputStream", exceptIO);
}
}
}
public void good() throws Throwable
{
goodG2B();
goodB2G();
}
/* goodG2B() - use GoodSource and BadSink */
private void goodG2B() throws Throwable
{
String data;
/* FIX: Use a hardcoded string */
data = "foo";
/* serialize data to a byte array */
ByteArrayOutputStream streamByteArrayOutput = null;
ObjectOutput outputObject = null;
try
{
streamByteArrayOutput = new ByteArrayOutputStream() ;
outputObject = new ObjectOutputStream(streamByteArrayOutput) ;
outputObject.writeObject(data);
byte[] dataSerialized = streamByteArrayOutput.toByteArray();
(new CWE89_SQL_Injection__File_executeQuery_75b()).goodG2BSink(dataSerialized );
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "IOException in serialization", exceptIO);
}
finally
{
/* clean up stream writing objects */
try
{
if (outputObject != null)
{
outputObject.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing ObjectOutputStream", exceptIO);
}
try
{
if (streamByteArrayOutput != null)
{
streamByteArrayOutput.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing ByteArrayOutputStream", exceptIO);
}
}
}
/* goodB2G() - use BadSource and GoodSink */
private void goodB2G() throws Throwable
{
String data;
data = ""; /* Initialize data */
{
File file = new File("C:\\data.txt");
FileInputStream streamFileInput = null;
InputStreamReader readerInputStream = null;
BufferedReader readerBuffered = null;
try
{
/* read string from file into data */
streamFileInput = new FileInputStream(file);
readerInputStream = new InputStreamReader(streamFileInput, "UTF-8");
readerBuffered = new BufferedReader(readerInputStream);
/* POTENTIAL FLAW: Read data from a file */
/* This will be reading the first "line" of the file, which
* could be very long if there are little or no newlines in the file */
data = readerBuffered.readLine();
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error with stream reading", exceptIO);
}
finally
{
/* Close stream reading objects */
try
{
if (readerBuffered != null)
{
readerBuffered.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing BufferedReader", exceptIO);
}
try
{
if (readerInputStream != null)
{
readerInputStream.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing InputStreamReader", exceptIO);
}
try
{
if (streamFileInput != null)
{
streamFileInput.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing FileInputStream", exceptIO);
}
}
}
/* serialize data to a byte array */
ByteArrayOutputStream streamByteArrayOutput = null;
ObjectOutput outputObject = null;
try
{
streamByteArrayOutput = new ByteArrayOutputStream() ;
outputObject = new ObjectOutputStream(streamByteArrayOutput) ;
outputObject.writeObject(data);
byte[] dataSerialized = streamByteArrayOutput.toByteArray();
(new CWE89_SQL_Injection__File_executeQuery_75b()).goodB2GSink(dataSerialized );
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "IOException in serialization", exceptIO);
}
finally
{
/* clean up stream writing objects */
try
{
if (outputObject != null)
{
outputObject.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing ObjectOutputStream", exceptIO);
}
try
{
if (streamByteArrayOutput != null)
{
streamByteArrayOutput.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing ByteArrayOutputStream", exceptIO);
}
}
}
/* Below is the main(). It is only used when building this testcase on
* its own for testing or for building a binary to use in testing binary
* analysis tools. It is not used when compiling all the testcases as one
* application, which is how source code analysis tools are tested.
*/
public static void main(String[] args) throws ClassNotFoundException,
InstantiationException, IllegalAccessException
{
mainFromParent(args);
}
}
| [
"anhtluet12@gmail.com"
] | anhtluet12@gmail.com |
5a9bc6a2cb803b89db7cfd27684a7394b71ccad0 | 57271c449a8bf142cd6acb0541618e1055789ba6 | /src/main/java/com/flavioramos/cursomc/services/S3Service.java | 5ef71353fa3c4b19d34c9bb9f085dd486d6a7af0 | [] | no_license | Flavio-Ramos/cursomc | 37979f70f35c6af64e14f21a27df449c3cff4888 | 600b58fa1f997504f93fc2f6156bfb3c1a679f53 | refs/heads/main | 2023-04-20T14:45:51.592167 | 2021-05-13T03:59:28 | 2021-05-13T03:59:28 | 348,205,744 | 0 | 0 | null | 2021-04-10T18:42:31 | 2021-03-16T03:48:56 | Java | UTF-8 | Java | false | false | 1,163 | java | package com.flavioramos.cursomc.services;
import java.io.File;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.model.PutObjectRequest;
@Service
public class S3Service {
private Logger LOG = LoggerFactory.getLogger(S3Service.class);
@Autowired
private AmazonS3 s3client;
@Value("${s3.bucket}")
private String bucketName;
public void uploadFile(String localFilePath) {
try {
File file = new File(localFilePath);
LOG.info("Iniciando upload");
s3client.putObject(new PutObjectRequest(bucketName,"teste",file));
LOG.info("Upload finalizado");
}catch(AmazonServiceException e) {
LOG.info("AmazonServiceException: " + e.getErrorMessage());
LOG.info("Status code: " + e.getErrorCode());
}catch(AmazonClientException e) {
LOG.info("AmazonClientException: " + e.getMessage());
}
}
}
| [
"prog_flavio@outlook.com"
] | prog_flavio@outlook.com |
f11dbb93d31fa4d5d8619ab16523f142d67fc95c | aa4b549210eb53fc421971120188e688e0393cec | /QuickStickyNotes/src/com/quickstickynotes/activities/IDisplayContent.java | d3fcf03c72540b817fddf1c3ce9df0963c1977be | [] | no_license | Speedmaister/QuickStickyNotes | 47602f6b8c1e04af7f64b53d781f2181f2e83784 | addea602149a14e13e808f0fa9d074f9f2d063db | refs/heads/master | 2021-01-02T09:19:49.246805 | 2013-11-25T09:03:21 | 2013-11-25T09:03:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 193 | java | package com.quickstickynotes.activities;
import com.quickstickynotes.models.StickyNoteContent;
public interface IDisplayContent {
void displayStickyNoteContent(StickyNoteContent content);
}
| [
"rado@rado.(none)"
] | rado@rado.(none) |
94049e4f4df3fbd25b750de6ef18f6ee7e371d83 | 5c05127ba3cd4eda872b4d866ca13467ada60c23 | /MidTier/stock-service/src/main/java/com/cognizant/stockservice/bean/Company.java | 068c72bced8834832b7638f2b12fa5b012f5b30f | [] | no_license | soumosb/MoDProject | c29e72c69b2a8c76bd4cf16f5fa71e8fdbd59d88 | e2d995f8260a542e7bd5d624e7937766b6d03965 | refs/heads/master | 2023-01-27T13:36:52.901599 | 2020-01-09T13:47:02 | 2020-01-09T13:47:02 | 232,561,483 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,119 | java | package com.cognizant.stockservice.bean;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
@Entity
@Table(name = "company")
public class Company {
@Id
@Column(name = "co_id")
@NotNull
private long id;
@NotNull
@NotEmpty
@Column(name="co_name")
private String name;
@NotNull
@Column(name = "co_turnover")
private float turnOver;
@Column(name = "co_ceo")
@NotNull
private String ceo;
@NotNull
@Column(name="co_board_of_directors")
private String boardOfDirectors;
@NotNull
@Column(name = "co_brief_writeup")
private String briefWriteup;
@Column(name="co_active")
private boolean active;
@NotNull
@Column(name="co_stock_code")
private long stockCode;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public float getTurnOver() {
return turnOver;
}
public void setTurnOver(float turnOver) {
this.turnOver = turnOver;
}
public String getCeo() {
return ceo;
}
public void setCeo(String ceo) {
this.ceo = ceo;
}
public String getBoardOfDirectors() {
return boardOfDirectors;
}
public void setBoardOfDirectors(String boardOfDirectors) {
this.boardOfDirectors = boardOfDirectors;
}
public String getBriefWriteup() {
return briefWriteup;
}
public void setBriefWriteup(String briefWriteup) {
this.briefWriteup = briefWriteup;
}
public boolean isActive() {
return active;
}
public void setActive(boolean active) {
this.active = active;
}
public long getStockCode() {
return stockCode;
}
public void setStockCode(long stockCode) {
this.stockCode = stockCode;
}
@Override
public String toString() {
return "Company [id=" + id + ", name=" + name + ", turnOver=" + turnOver + ", ceo=" + ceo
+ ", boardOfDirectors=" + boardOfDirectors + ", briefWriteup=" + briefWriteup + ", active=" + active
+ ", stockCode=" + stockCode + "]";
}
}
| [
"805847@cognizant.com"
] | 805847@cognizant.com |
332694557854e19639372cfdef18c09450577da4 | 5e7749dc8a4f68984d5e0553b4e30df725e2b1ea | /src/program/subEnter.java | 8bb9cdeb8f6e9ec8469b28c6e21616f5eae3ccf5 | [] | no_license | JacobMahto/Tech-Res-Base | 161127c316628f11d8ab3d9b04bf6266d86b1203 | ea21b5462f3dde23fd806a7506f1bf7f96837788 | refs/heads/master | 2021-04-15T08:58:26.249075 | 2018-07-14T19:25:15 | 2018-07-14T19:25:15 | 126,216,131 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,540 | java | package program;
import java.awt.print.PrinterException;
import java.sql.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
import javax.swing.table.DefaultTableModel;
import java.sql.Time;
import javax.swing.UIManager;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author David
*/
public class subEnter extends javax.swing.JFrame {
/**
* Creates new form subEnter
*/
public subEnter() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
jScrollPane1 = new javax.swing.JScrollPane();
tableT = new javax.swing.JTable();
jPanel2 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
countTF = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
setTitle("Subjects Available");
setResizable(false);
tableT.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null},
{null, null}
},
new String [] {
"Subject", "ID(Three digit)"
}
));
tableT.setSelectionBackground(new java.awt.Color(0, 153, 153));
jScrollPane1.setViewportView(tableT);
jPanel2.setBackground(new java.awt.Color(0, 51, 0));
jLabel1.setFont(new java.awt.Font("Adobe Hebrew", 1, 24)); // NOI18N
jLabel1.setForeground(new java.awt.Color(0, 255, 204));
jLabel1.setText("<HTML><B><CENTER>SUBJECTS <BR>AVAILABLE");
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(125, 125, 125)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(24, 24, 24)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(26, Short.MAX_VALUE))
);
countTF.setEditable(false);
countTF.setForeground(new java.awt.Color(0, 153, 102));
countTF.setText("ERROR ! CONTACT JACOB MAHTO.");
countTF.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
countTFActionPerformed(evt);
}
});
jButton1.setFont(new java.awt.Font("Adobe Hebrew", 1, 18)); // NOI18N
jButton1.setText("CONFIRM");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jLabel2.setFont(new java.awt.Font("Adobe Hebrew", 0, 18)); // NOI18N
jLabel2.setForeground(new java.awt.Color(0, 51, 0));
jLabel2.setText("Total Subjects :");
jLabel3.setFont(new java.awt.Font("Adobe Hebrew", 0, 12)); // NOI18N
jLabel3.setForeground(new java.awt.Color(0, 51, 0));
jLabel3.setText("MAX. SUBJECTS : 90 ");
jLabel4.setFont(new java.awt.Font("Adobe Hebrew", 0, 18)); // NOI18N
jLabel4.setForeground(new java.awt.Color(0, 51, 0));
jLabel4.setText("THE MATH ENGINE BY JACOB MAHTO");
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel2)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(countTF, javax.swing.GroupLayout.PREFERRED_SIZE, 232, javax.swing.GroupLayout.PREFERRED_SIZE))
.addComponent(jLabel3))
.addGap(0, 18, Short.MAX_VALUE)))
.addContainerGap())
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jLabel4)
.addGap(29, 29, 29))
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(127, 127, 127)
.addComponent(jButton1)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
.addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(countTF, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 277, Short.MAX_VALUE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel3)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel4)
.addGap(4, 4, 4))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 0, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
clearTable();
String[] name=new String[2];
int noOfSubjects=0;
int lastBlank=-9;
DefaultTableModel table=new DefaultTableModel();
table=(DefaultTableModel)tableT.getModel();
noOfSubjects=table.getRowCount();
for(int i=0;i<=95 ;i++){
Object obj=table.getValueAt(i, 0);
String objStr=(String)obj;
int lnt=-1;
int blankTrack=0;
try{
lnt =objStr.length();}
catch(Exception E){}
System.out.println(objStr);
//checking blank box
for (int j = 0; j <= (lnt - 1); j++) {
if (objStr.substring(j, j + 1).equals(" ")) {
blankTrack++;
}
}
System.out.println("BTRACK="+blankTrack);
if (obj == null || blankTrack == lnt) {//condition for blank row check
lastBlank = i;//to tell the value of the blank row encountered first
i = 95;//to terminate further checking
}
}
System.out.println("CULPRIT ="+lastBlank);
System.out.println("Entering Values");
if(lastBlank>0){
//now entering the value
try{
Class.forName("java.sql.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost","root","lion");
Statement stmt=con.createStatement();
String query1="USE rsl;";
stmt.execute(query1);
for(int i=0;i<lastBlank;i++){
String query2="INSERT INTO subjectsOriginal VALUES('"+table.getValueAt(i, 0)+"',"+table.getValueAt(i, 1)+");";
stmt.execute(query2);}
}
catch(Exception E){
JOptionPane.showMessageDialog(null, E);
System.out.println(E);
}}
dispose();
subEnter obj=new subEnter();
obj.setVisible(true);
refresh();
// TODO add your handling code here:
}//GEN-LAST:event_jButton1ActionPerformed
private void countTFActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_countTFActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_countTFActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(subEnter.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(subEnter.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(subEnter.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(subEnter.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new subEnter().setVisible(true);
refresh();
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
public static javax.swing.JTextField countTF;
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JScrollPane jScrollPane1;
public static javax.swing.JTable tableT;
// End of variables declaration//GEN-END:variables
public static void refresh() {
try{
Class.forName("java.sql.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost","root","lion");
Statement stmt=con.createStatement();
String query1="CREATE DATABASE IF NOT EXISTS rsl;";
String query2="USE rsl;";
stmt.execute(query1);
stmt.execute(query2);
DefaultTableModel table=(DefaultTableModel)tableT.getModel();
String querys="SELECT * FROM subjectsOriginal;";
ResultSet rs=stmt.executeQuery(querys);
rs.last();
rs.getRow();
countTF.setText(rs.getRow()+"");
rs.beforeFirst();
int countR=0;
while(rs.next()){
System.out.println(rs.getString("subject"));
table.setValueAt(rs.getString(1),countR, 0);
table.setValueAt(rs.getInt("id"),countR, 1);
countR++;
}
}
catch(Exception E){
System.out.println(E);
JOptionPane.showMessageDialog(null,E);
}
}
public static void clearTable(){
try{
Class.forName("java.sql.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost","root","lion");
Statement stmt=con.createStatement();
String query1="USE rsl;";
String query2="DROP TABLE subjectsOriginal;";
String query3="CREATE TABLE IF NOT EXISTS subjectsOriginal(subject varchar(100) not null,id int ,CHECK id>0,UNIQUE(id));";
stmt.execute(query1);
stmt.execute(query2);
stmt.execute(query3);
}
catch(Exception E){
System.out.println(E);
}}
}
| [
"jacobmahto148@gmail.com"
] | jacobmahto148@gmail.com |
edab1a2dcb9b6ee2fdca6b84fb0269b16c3c2132 | e5ad451334d82cb7ebf6ae9b26ddde5337ec45f6 | /src/main/java/it/auties/whatsapp4j/response/impl/AckResponse.java | caf68d55f5f255b8fe2d80a7cd8b56cd8bab2fba | [
"MIT"
] | permissive | mauryasankalp/WhatsappWeb4j | a0c17d41fe15c6663aed99ff55682fe1d0d26ced | e7f08fbf61d2042c2c47e15a76b6444783e54697 | refs/heads/master | 2023-03-28T19:01:24.501810 | 2021-03-29T13:28:57 | 2021-03-29T13:28:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,430 | java | package it.auties.whatsapp4j.response.impl;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import it.auties.whatsapp4j.model.WhatsappProtobuf;
import it.auties.whatsapp4j.response.model.JsonResponseModel;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* A json model that contains information regarding an update about the read status of a message
*
* @param cmd a nullable identifier for the request
* @param ids a non null array of message ids that this update regards
* @param ack an unsigned int representing {@link WhatsappProtobuf.WebMessageInfo.WEB_MESSAGE_INFO_STATUS}
* @param from the sender of the messages that this update regards
* @param to chat of the messages that this update regards
* @param timestamp the time in seconds since {@link java.time.Instant#EPOCH} when the update was dispatched by the server
* @param participant if {@code to} is a group, the participant that this update regards
*/
public record AckResponse(@Nullable String cmd,
@NotNull @JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY) @JsonProperty("id") String[] ids,
int ack, @NotNull String from, @NotNull String to, @JsonProperty("t") int timestamp,
@Nullable String participant) implements JsonResponseModel {
}
| [
"alautiero@gmail.com"
] | alautiero@gmail.com |
ecd557218b6889a1b9e3a6453cd677d48b4c83e5 | b07e221cdbc476e3a1daf2146557a4e5b658d7a3 | /src/main/java/com/mycompany/testplacticeproject/FXMLController.java | 426eccef61e587a2186176d3d9db2617f4e5f721 | [] | no_license | matsumotoyoshihiro/FXML_Test_Practice | 0f2b230147293a09d3f70eeae2579d77fc880c2e | f77cd71d3f5da0fde011e99efd7aa19faea22b30 | refs/heads/master | 2016-09-08T00:43:01.924419 | 2015-08-10T09:37:52 | 2015-08-10T09:37:52 | 40,473,967 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 886 | java | package com.mycompany.testplacticeproject;
import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
public class FXMLController implements Initializable {
@FXML
private Label label;
@FXML
private Label callback;
@FXML
private TextField txt;
@FXML
private void handleButtonAction(ActionEvent event) {
System.out.println("You clicked me!");
label.setText("Hello World!");
callback.setText(txt.getText());
}
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
}
| [
"User@172.16.6.172"
] | User@172.16.6.172 |
602d5b7a74dded9afb481c8cab7d1c58853307d7 | f193f956d32645d9d0d62e3db3905292bf5fc5af | /src/main/java/com/sadheera/wileytest/config/AppProperties.java | 24112df4f44fdec6394908f4357703452344a5f8 | [] | no_license | SadheeraMahanama/Wiley-Test-Backend | 6d54151564ea6963c269e2611a470a8fd5df039b | 0ef31959b8f230afa9788e04d56a49545d2130f2 | refs/heads/master | 2023-03-04T06:36:55.505320 | 2021-02-04T07:29:42 | 2021-02-04T07:29:42 | 332,384,021 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,418 | java | package com.sadheera.wileytest.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.ArrayList;
import java.util.List;
@ConfigurationProperties(prefix = "app")
public class AppProperties {
private final Auth auth = new Auth();
private final OAuth2 oauth2 = new OAuth2();
public static class Auth {
private String tokenSecret;
private long tokenExpirationMsec;
public String getTokenSecret() {
return tokenSecret;
}
public void setTokenSecret(String tokenSecret) {
this.tokenSecret = tokenSecret;
}
public long getTokenExpirationMsec() {
return tokenExpirationMsec;
}
public void setTokenExpirationMsec(long tokenExpirationMsec) {
this.tokenExpirationMsec = tokenExpirationMsec;
}
}
public static final class OAuth2 {
private List<String> authorizedRedirectUris = new ArrayList<>();
public List<String> getAuthorizedRedirectUris() {
return authorizedRedirectUris;
}
public OAuth2 authorizedRedirectUris(List<String> authorizedRedirectUris) {
this.authorizedRedirectUris = authorizedRedirectUris;
return this;
}
}
public Auth getAuth() {
return auth;
}
public OAuth2 getOauth2() {
return oauth2;
}
}
| [
"sadheeramahanama94@gmail.com"
] | sadheeramahanama94@gmail.com |
bd107dc2ca19746b302cc51d615365b36954bf61 | 6931483cc1f9d77d97cecb23e40ce1adf8ce4cb9 | /app/build/generated/source/r/debug/android/support/constraint/R.java | 1dcd0d8ad03a3a3fd4d42baa5fbbff7afd7cc829 | [] | no_license | Toshiyuki0713/SecaideRf2 | d59a3dbce84bf58fa145cd7c9e15feed7e4f2879 | 53240b2c6fdaa50eaa4db9ec99af1407ef0b6f07 | refs/heads/master | 2021-09-10T22:18:14.458600 | 2018-04-03T05:08:15 | 2018-04-03T05:08:15 | 107,652,189 | 0 | 1 | null | 2018-04-03T05:32:34 | 2017-10-20T08:26:50 | Java | UTF-8 | Java | false | false | 15,252 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package android.support.constraint;
public final class R {
public static final class attr {
public static final int constraintSet = 0x7f020055;
public static final int layout_constraintBaseline_creator = 0x7f02008a;
public static final int layout_constraintBaseline_toBaselineOf = 0x7f02008b;
public static final int layout_constraintBottom_creator = 0x7f02008c;
public static final int layout_constraintBottom_toBottomOf = 0x7f02008d;
public static final int layout_constraintBottom_toTopOf = 0x7f02008e;
public static final int layout_constraintDimensionRatio = 0x7f02008f;
public static final int layout_constraintEnd_toEndOf = 0x7f020090;
public static final int layout_constraintEnd_toStartOf = 0x7f020091;
public static final int layout_constraintGuide_begin = 0x7f020092;
public static final int layout_constraintGuide_end = 0x7f020093;
public static final int layout_constraintGuide_percent = 0x7f020094;
public static final int layout_constraintHeight_default = 0x7f020095;
public static final int layout_constraintHeight_max = 0x7f020096;
public static final int layout_constraintHeight_min = 0x7f020097;
public static final int layout_constraintHorizontal_bias = 0x7f020098;
public static final int layout_constraintHorizontal_chainStyle = 0x7f020099;
public static final int layout_constraintHorizontal_weight = 0x7f02009a;
public static final int layout_constraintLeft_creator = 0x7f02009b;
public static final int layout_constraintLeft_toLeftOf = 0x7f02009c;
public static final int layout_constraintLeft_toRightOf = 0x7f02009d;
public static final int layout_constraintRight_creator = 0x7f02009e;
public static final int layout_constraintRight_toLeftOf = 0x7f02009f;
public static final int layout_constraintRight_toRightOf = 0x7f0200a0;
public static final int layout_constraintStart_toEndOf = 0x7f0200a1;
public static final int layout_constraintStart_toStartOf = 0x7f0200a2;
public static final int layout_constraintTop_creator = 0x7f0200a3;
public static final int layout_constraintTop_toBottomOf = 0x7f0200a4;
public static final int layout_constraintTop_toTopOf = 0x7f0200a5;
public static final int layout_constraintVertical_bias = 0x7f0200a6;
public static final int layout_constraintVertical_chainStyle = 0x7f0200a7;
public static final int layout_constraintVertical_weight = 0x7f0200a8;
public static final int layout_constraintWidth_default = 0x7f0200a9;
public static final int layout_constraintWidth_max = 0x7f0200aa;
public static final int layout_constraintWidth_min = 0x7f0200ab;
public static final int layout_editor_absoluteX = 0x7f0200ac;
public static final int layout_editor_absoluteY = 0x7f0200ad;
public static final int layout_goneMarginBottom = 0x7f0200ae;
public static final int layout_goneMarginEnd = 0x7f0200af;
public static final int layout_goneMarginLeft = 0x7f0200b0;
public static final int layout_goneMarginRight = 0x7f0200b1;
public static final int layout_goneMarginStart = 0x7f0200b2;
public static final int layout_goneMarginTop = 0x7f0200b3;
public static final int layout_optimizationLevel = 0x7f0200b4;
}
public static final class id {
public static final int all = 0x7f07001d;
public static final int basic = 0x7f070025;
public static final int chains = 0x7f070034;
public static final int none = 0x7f070070;
public static final int packed = 0x7f07007c;
public static final int parent = 0x7f07007d;
public static final int spread = 0x7f0700a0;
public static final int spread_inside = 0x7f0700a1;
public static final int wrap = 0x7f0700ce;
}
public static final class styleable {
public static final int[] ConstraintLayout_Layout = { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020055, 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f02008d, 0x7f02008e, 0x7f02008f, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4 };
public static final int ConstraintLayout_Layout_android_orientation = 0;
public static final int ConstraintLayout_Layout_android_maxWidth = 1;
public static final int ConstraintLayout_Layout_android_maxHeight = 2;
public static final int ConstraintLayout_Layout_android_minWidth = 3;
public static final int ConstraintLayout_Layout_android_minHeight = 4;
public static final int ConstraintLayout_Layout_constraintSet = 5;
public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 6;
public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 7;
public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 8;
public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 9;
public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 10;
public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 11;
public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 12;
public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 13;
public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 14;
public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 15;
public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 16;
public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 17;
public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 18;
public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 19;
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 20;
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 21;
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 22;
public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 23;
public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 24;
public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 25;
public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 26;
public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 27;
public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 28;
public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 29;
public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 30;
public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 31;
public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 32;
public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 33;
public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 34;
public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 35;
public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 36;
public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 37;
public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 38;
public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 39;
public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 40;
public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 41;
public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 42;
public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 43;
public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 44;
public static final int ConstraintLayout_Layout_layout_goneMarginRight = 45;
public static final int ConstraintLayout_Layout_layout_goneMarginStart = 46;
public static final int ConstraintLayout_Layout_layout_goneMarginTop = 47;
public static final int ConstraintLayout_Layout_layout_optimizationLevel = 48;
public static final int[] ConstraintSet = { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f02008d, 0x7f02008e, 0x7f02008f, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3 };
public static final int ConstraintSet_android_orientation = 0;
public static final int ConstraintSet_android_id = 1;
public static final int ConstraintSet_android_visibility = 2;
public static final int ConstraintSet_android_layout_width = 3;
public static final int ConstraintSet_android_layout_height = 4;
public static final int ConstraintSet_android_layout_marginLeft = 5;
public static final int ConstraintSet_android_layout_marginTop = 6;
public static final int ConstraintSet_android_layout_marginRight = 7;
public static final int ConstraintSet_android_layout_marginBottom = 8;
public static final int ConstraintSet_android_alpha = 9;
public static final int ConstraintSet_android_transformPivotX = 10;
public static final int ConstraintSet_android_transformPivotY = 11;
public static final int ConstraintSet_android_translationX = 12;
public static final int ConstraintSet_android_translationY = 13;
public static final int ConstraintSet_android_scaleX = 14;
public static final int ConstraintSet_android_scaleY = 15;
public static final int ConstraintSet_android_rotationX = 16;
public static final int ConstraintSet_android_rotationY = 17;
public static final int ConstraintSet_android_layout_marginStart = 18;
public static final int ConstraintSet_android_layout_marginEnd = 19;
public static final int ConstraintSet_android_translationZ = 20;
public static final int ConstraintSet_android_elevation = 21;
public static final int ConstraintSet_layout_constraintBaseline_creator = 22;
public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 23;
public static final int ConstraintSet_layout_constraintBottom_creator = 24;
public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 25;
public static final int ConstraintSet_layout_constraintBottom_toTopOf = 26;
public static final int ConstraintSet_layout_constraintDimensionRatio = 27;
public static final int ConstraintSet_layout_constraintEnd_toEndOf = 28;
public static final int ConstraintSet_layout_constraintEnd_toStartOf = 29;
public static final int ConstraintSet_layout_constraintGuide_begin = 30;
public static final int ConstraintSet_layout_constraintGuide_end = 31;
public static final int ConstraintSet_layout_constraintGuide_percent = 32;
public static final int ConstraintSet_layout_constraintHeight_default = 33;
public static final int ConstraintSet_layout_constraintHeight_max = 34;
public static final int ConstraintSet_layout_constraintHeight_min = 35;
public static final int ConstraintSet_layout_constraintHorizontal_bias = 36;
public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 37;
public static final int ConstraintSet_layout_constraintHorizontal_weight = 38;
public static final int ConstraintSet_layout_constraintLeft_creator = 39;
public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 40;
public static final int ConstraintSet_layout_constraintLeft_toRightOf = 41;
public static final int ConstraintSet_layout_constraintRight_creator = 42;
public static final int ConstraintSet_layout_constraintRight_toLeftOf = 43;
public static final int ConstraintSet_layout_constraintRight_toRightOf = 44;
public static final int ConstraintSet_layout_constraintStart_toEndOf = 45;
public static final int ConstraintSet_layout_constraintStart_toStartOf = 46;
public static final int ConstraintSet_layout_constraintTop_creator = 47;
public static final int ConstraintSet_layout_constraintTop_toBottomOf = 48;
public static final int ConstraintSet_layout_constraintTop_toTopOf = 49;
public static final int ConstraintSet_layout_constraintVertical_bias = 50;
public static final int ConstraintSet_layout_constraintVertical_chainStyle = 51;
public static final int ConstraintSet_layout_constraintVertical_weight = 52;
public static final int ConstraintSet_layout_constraintWidth_default = 53;
public static final int ConstraintSet_layout_constraintWidth_max = 54;
public static final int ConstraintSet_layout_constraintWidth_min = 55;
public static final int ConstraintSet_layout_editor_absoluteX = 56;
public static final int ConstraintSet_layout_editor_absoluteY = 57;
public static final int ConstraintSet_layout_goneMarginBottom = 58;
public static final int ConstraintSet_layout_goneMarginEnd = 59;
public static final int ConstraintSet_layout_goneMarginLeft = 60;
public static final int ConstraintSet_layout_goneMarginRight = 61;
public static final int ConstraintSet_layout_goneMarginStart = 62;
public static final int ConstraintSet_layout_goneMarginTop = 63;
public static final int[] LinearConstraintLayout = { 0x010100c4 };
public static final int LinearConstraintLayout_android_orientation = 0;
}
}
| [
"tourokusaito.masakazu@gmail.com"
] | tourokusaito.masakazu@gmail.com |
e20a0cd6c8dc7e31b4d67e92af160d93a74fe524 | 144bc0c479b730eef00af4661d33574f20b68e95 | /apps/test/tv/codely/apps/mooc/controller/user/UserPutControllerShould.java | fc22bf154fe66a946b5bce6b976c1338014f9fd9 | [] | no_license | JAndreuSoler/ddd-java-practice | 1ce856596dd0bb8e45ea0411dafbe36824c97ba2 | a8723426ae273ac9e667252e3f512561a3861750 | refs/heads/master | 2022-11-24T18:08:08.921692 | 2020-06-24T09:09:38 | 2020-06-24T09:09:38 | 272,797,130 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 523 | java | package tv.codely.apps.mooc.controller.user;
import org.junit.jupiter.api.Test;
import tv.codely.apps.mooc.controller.ApplicationTestCase;
class UserPutControllerShould extends ApplicationTestCase {
@Test
public void create_valid_not_existing_user() throws Exception{
assertRequestWithBody(
"PUT",
"/user/1aab45ba-3c7a-4344-8936-78466eca77fa",
"{\"name\": \"some-name\", \"email\": \"some-email\", \"password\": \"some-password\"}",
201
);
}
}
| [
"joanandreusole@gmail.com"
] | joanandreusole@gmail.com |
bb1030d66b23e27e066ffddb6696c904a3c72caf | 0b6885cb3e7a6e97c0a5f8f2ee34f6de37638a64 | /corejava/src/v1ch11/ExceptionalTest/ExceptionalTest.java | ae3f68e72ddfb81bfc016051f78c6c4ba86d9ff2 | [] | no_license | renmeng8875/java-base | da4a16d4f1e1b993d9cba296423bf1717dc5f601 | ad085906492db6588e3038b86b6c562b38d48a93 | refs/heads/master | 2021-05-12T06:20:13.242069 | 2018-01-12T10:18:30 | 2018-01-12T10:18:30 | 117,215,648 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,029 | java | package v1ch11.ExceptionalTest;
import java.util.*;
/**
* @version 1.10 2000-06-03
* @author Cay Horstmann
*/
public class ExceptionalTest
{
public static void main(String[] args)
{
int i = 0;
int ntry = 10000000;
Stack<String> s = new Stack<String>();
long s1;
long s2;
// test a stack for emptiness ntry times
System.out.println("Testing for empty stack");
s1 = new Date().getTime();
for (i = 0; i <= ntry; i++)
if (!s.empty()) s.pop();
s2 = new Date().getTime();
System.out.println((s2 - s1) + " milliseconds");
// pop an empty stack ntry times and catch the resulting exception
System.out.println("Catching EmptyStackException");
s1 = new Date().getTime();
for (i = 0; i <= ntry; i++)
{
try
{
s.pop();
}
catch (EmptyStackException e)
{
}
}
s2 = new Date().getTime();
System.out.println((s2 - s1) + " milliseconds");
}
}
| [
"renmeng@meitunmama.com"
] | renmeng@meitunmama.com |
88460b12ad0380c7065a909f6681bb172f51df6b | c757c47da1a98368af321024203077a7e858e997 | /trade-service-project/trade-service-api/src/main/java/cn/iocoder/mall/tradeservice/enums/aftersale/AfterSaleTypeEnum.java | 7dea23d967081d07138bfa162ed0b6d2ad25ce72 | [
"LicenseRef-scancode-unknown-license-reference",
"MulanPSL-1.0",
"LicenseRef-scancode-mulanpsl-1.0-en"
] | permissive | LimTerran/onemall | 7751d474f49f599303c79be6f12b9ca3b290ddee | fd643c98e0c91edf4a4446b1bf342ce0be75a09c | refs/heads/master | 2021-07-19T10:40:06.475188 | 2021-04-05T10:08:21 | 2021-04-05T10:08:21 | 245,588,566 | 0 | 0 | NOASSERTION | 2021-04-05T10:08:22 | 2020-03-07T07:35:04 | Java | UTF-8 | Java | false | false | 461 | java | package cn.iocoder.mall.tradeservice.enums.aftersale;
import lombok.Getter;
/**
* 售后单的类型枚举
*/
@Getter
public enum AfterSaleTypeEnum {
IN_SALE(10, "售中退款"),
AFTER_SALE(20, "售后退款");
/**
* 类型
*/
private final Integer type;
/**
* 描述
*/
private final String desc;
AfterSaleTypeEnum(Integer type, String desc) {
this.type = type;
this.desc = desc;
}
}
| [
""
] | |
7bb957fdd883563dd5ecbe6ff5cfcc9a705cb16e | d5c9a228d3ddecf3b009eb31debf8310ae850a11 | /sdkDemo/src/main/java/com/m7/imkfsdk/chat/chatrow/BreakTipChatRow.java | 3222dbb9b3ad776d9c56c1d4425f78024f14826c | [] | no_license | DevelopWb/ghsHome | 732c0bc0cecb5e51e8778d6254281a12339a22df | 076b6ccf35f6c5810e5339eae5887d4519f03636 | refs/heads/master | 2020-07-30T17:20:17.879585 | 2019-09-23T08:35:37 | 2019-09-23T08:35:37 | 210,285,009 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,570 | java | package com.m7.imkfsdk.chat.chatrow;
import android.content.Context;
import android.view.ContextMenu;
import android.view.LayoutInflater;
import android.view.View;
import com.m7.imkfsdk.R;
import com.m7.imkfsdk.chat.holder.BaseHolder;
import com.m7.imkfsdk.chat.holder.BreakTipHolder;
import com.moor.imkf.model.entity.FromToMessage;
import com.moor.imkf.utils.NullUtil;
/**
* Created by longwei on 2017/12/11.
*/
public class BreakTipChatRow extends BaseChatRow{
public BreakTipChatRow(int type) {
super(type);
}
@Override
public View buildChatView(LayoutInflater inflater, View convertView) {
if(convertView == null) {
convertView = inflater.inflate(R.layout.kf_chat_row_break_tip_rx, null);
BreakTipHolder holder = new BreakTipHolder(mRowType);
convertView.setTag(holder.initBaseHolder(convertView, false));
}
return convertView;
}
@Override
public int getChatViewType() {
return ChatRowType.BREAK_TIP_ROW_RECEIVED.ordinal();
}
@Override
public boolean onCreateRowContextMenu(ContextMenu contextMenu, View targetView, FromToMessage detail) {
return false;
}
@Override
protected void buildChattingData(Context context, BaseHolder baseHolder, FromToMessage detail, int position) {
BreakTipHolder holder = (BreakTipHolder) baseHolder;
final FromToMessage message = detail;
if (message != null) {
holder.getDescTextView().setText(NullUtil.checkNull(message.message));
}
}
}
| [
"three6one@163.com"
] | three6one@163.com |
d75afb367aa17405e50f59ebca146cbcf144483f | 83e6d96c60378dccef0451270bc1f758e4278202 | /gwt-af-eventbus/src/main/java/org/gwtaf/eventbus/place/PlaceRequest.java | 731d5ed60654c09c0c26512e2b75328670e6220b | [] | no_license | amaltson/gwt-app-framework | 15a15db3284b9df998e82f7d57ea9e64a909751b | 06fa35c01e2ffa1f838e66943633d55cf7ed426e | refs/heads/master | 2021-01-10T21:18:10.173963 | 2015-05-10T01:53:30 | 2015-05-10T01:53:30 | 35,352,697 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,339 | java | package org.gwtaf.eventbus.place;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
/**
* PlaceRequest
*
* @author David Peterson
*/
public class PlaceRequest {
private static final String PARAM_SEPARATOR = ";";
private static final String PARAM_PATTERN = PARAM_SEPARATOR + "(?!"
+ PARAM_SEPARATOR + ")";
private static final String PARAM_ESCAPE = PARAM_SEPARATOR
+ PARAM_SEPARATOR;
private static final String VALUE_SEPARATOR = "=";
private static final String VALUE_PATTERN = VALUE_SEPARATOR + "(?!"
+ VALUE_SEPARATOR + ")";
private static final String VALUE_ESCAPE = VALUE_SEPARATOR
+ VALUE_SEPARATOR;
private final Place place;
private final Map<String, String> params;
public PlaceRequest(Place id) {
this.place = id;
this.params = new HashMap<String, String>();
}
private PlaceRequest(PlaceRequest req, String name, String value) {
this.place = req.place;
this.params = new java.util.HashMap<String, String>();
if (req.params != null)
this.params.putAll(req.params);
this.params.put(name, value);
}
public Place getPlace() {
return place;
}
public Set<String> getParameterNames() {
if (params != null) {
return params.keySet();
} else {
return Collections.EMPTY_SET;
}
}
public void addParameter(String key, String value) {
params.put(key, value);
}
public String getParameter(String key, String defaultValue) {
String value = null;
if (params != null)
value = params.get(key);
if (value == null)
value = defaultValue;
return value;
}
/**
* Returns a new instance of the request with the specified parameter name
* and value. If a parameter with the same name was previously specified,
* the new request contains the new value.
*
* @param name
* The new parameter name.
* @param value
* The new parameter value.
* @return The new place request instance.
*/
public PlaceRequest with(String name, String value) {
return new PlaceRequest(this, name, value);
}
@Override
public boolean equals(Object obj) {
if (obj instanceof PlaceRequest) {
PlaceRequest req = (PlaceRequest) obj;
if (!req.equals(req.place))
return false;
if (params == null)
return req.params == null;
else
return params.equals(req.params);
}
return false;
}
@Override
public int hashCode() {
return 11 * (place.hashCode() + (params == null ? 0 : params.hashCode()));
}
/**
* Outputs the place as a GWT history token.
*/
@Override
public String toString() {
StringBuilder out = new StringBuilder();
out.append(place.toString());
if (params != null && params.size() > 0) {
for (Map.Entry<String, String> entry : params.entrySet()) {
out.append(PARAM_SEPARATOR);
out.append(escape(entry.getKey())).append(VALUE_SEPARATOR)
.append(escape(entry.getValue()));
}
}
return out.toString();
}
/**
* Parses a GWT history token into a {@link Place} instance.
*
* @param token
* The token.
* @return The place, or <code>null</code> if the token could not be parsed.
*/
public static PlaceRequest fromString(String token)
throws PlaceParsingException {
PlaceRequest req = null;
int split = token.indexOf(PARAM_SEPARATOR);
if (split == 0) {
throw new PlaceParsingException("Place id is missing.");
} else if (split == -1) {
req = new PlaceRequest(new Place(token));
} else if (split >= 0) {
req = new PlaceRequest(new Place(token.substring(0, split)));
String paramsChunk = token.substring(split + 1);
String[] paramTokens = paramsChunk.split(PARAM_PATTERN);
for (String paramToken : paramTokens) {
String[] param = paramToken.split(VALUE_PATTERN);
if (param.length != 2)
throw new PlaceParsingException(
"Bad parameter: Parameters require a single '"
+ VALUE_SEPARATOR
+ "' between the key and value.");
req = req.with(unescape(param[0]), unescape(param[1]));
}
}
return req;
}
private static String escape(String value) {
return value.replaceAll(PARAM_SEPARATOR, PARAM_ESCAPE).replaceAll(
VALUE_SEPARATOR, VALUE_ESCAPE);
}
private static String unescape(String value) {
return value.replaceAll(PARAM_ESCAPE, PARAM_SEPARATOR).replaceAll(
VALUE_ESCAPE, VALUE_SEPARATOR);
}
}
| [
"svesselov@mtsinai.on.ca@806756f2-60bb-11de-9789-710e3b6db069"
] | svesselov@mtsinai.on.ca@806756f2-60bb-11de-9789-710e3b6db069 |
e1a044b9bf8769dbe0d3c6fb045bc4a7ef644390 | 58aa07d6c3847710137d5e57c3722df7bc914e12 | /ltybdservice-utils/src/main/java/com/ltybdservice/hiveutil/DpDataBaseUtil.java | d47ef7ec2567963925be3a543b77da8aeb3c1f5b | [] | no_license | un-knower/ltybdservice-root | 77f1fa4ab6bcd07500277c7e962a74c1c779d387 | c55f6c548ec05eee7848755c41fcd9a71aff7f57 | refs/heads/master | 2020-03-17T16:06:56.382897 | 2018-03-13T03:21:48 | 2018-03-13T03:21:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,158 | java | package com.ltybdservice.hiveutil;
import com.mchange.v2.c3p0.ComboPooledDataSource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.beans.PropertyVetoException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
/**
* @author: Administrator$
* @project: ltybdservice-root$
* @date: 2017/11/22$ 16:23$
* @description:
*/
public class DpDataBaseUtil {
private static final Logger LOG = LoggerFactory.getLogger(DpDataBaseUtil.class);
private static ComboPooledDataSource dpCpds = null;
private static Connection dpConnection = null;
private static Map<String, ArrayList<Map>> hour_passflow_line_map0 = new HashMap<>(); //key为citycode+hour direction=0
private static Map<String, ArrayList<Map>> hour_passflow_line_map1 = new HashMap<>(); //key为citycode+hour direction=1
private static DpDataBaseUtil dpConnectionInstance = new DpDataBaseUtil();
private DpDataBaseUtil() {
}
/**
* @return type: com.mchange.v2.c3p0.ComboPooledDataSource
* @author: Administrator
* @date: 2017/11/22 16:29
* @method: getCpds
* @param: [conf]
* @desciption:
*/
private static ComboPooledDataSource getCpds(DataSourceConf conf) {
ComboPooledDataSource cpds = new ComboPooledDataSource();
try {
cpds.setDriverClass(conf.getDriverName()); //loads the jdbc driver
} catch (PropertyVetoException e) {
e.printStackTrace();
}
cpds.setJdbcUrl(conf.getJdbcConnUrl() + conf.getDataBaseName());
cpds.setUser(conf.getHiveUser());
cpds.setPassword(conf.getHivePassword());
cpds.setMaxStatements(180);
return cpds;
}
/**
* @return type: com.ltybdservice.hiveutil.DpDataBaseUtil
* @author: Administrator
* @date: 2017/11/22 16:29
* @method: getDpConnectionInstance
* @param: [conf]
* @desciption:
*/
public static DpDataBaseUtil getDpConnectionInstance(DataSourceConf conf) {
if (dpConnection == null) {
try {
dpCpds = getCpds(conf);
dpConnection = dpCpds.getConnection();
} catch (SQLException e) {
e.printStackTrace();
}
}
return dpConnectionInstance;
}
/**
* @return type: void
* @author: Administrator
* @date: 2017/11/22 16:30
* @method: closeDpConnection
* @param: []
* @desciption:
*/
public void closeDpConnection() {
try {
dpConnection.close();
} catch (SQLException e) {
e.printStackTrace();
}
dpCpds.close();
}
/**
* @return type: java.util.Map<java.lang.String,java.util.ArrayList<java.util.Map>>
* @author: Administrator
* @date: 2017/11/22 16:30
* @method: getHour_passflow_lineTable0
* @param: [workDate, hour]
* @desciption: use dp databases
*/
public Map<String, ArrayList<Map>> getHour_passflow_lineTable0(String workDate, String hour) throws PropertyVetoException, SQLException {
if (hour_passflow_line_map0.get(hour) != null) {
return hour_passflow_line_map0;
}
hour_passflow_line_map0.clear();//清除过时数据,避免数据一直累积
String sql = "select citycode,lineid,workdate,offtime,predictionpassengernum from dm_passflow_line_dm where type = 1 and cycle = 30 and direction = 0 and workdate = " + workDate + " and offtime =" + hour;
PreparedStatement ps = null;
ResultSet rs = null;
ArrayList<Map> arrayList = new ArrayList<Map>();
Map lineid2PrePsg = new HashMap<String, Integer>();
ps = dpConnection.prepareStatement(sql);
rs = ps.executeQuery();
while (rs.next()) {
lineid2PrePsg.put(String.valueOf(rs.getInt("lineid")) + "@" + rs.getString("citycode"), rs.getInt("predictionpassengernum"));
}
rs.close();
arrayList.add(lineid2PrePsg);
hour_passflow_line_map0.put(hour, arrayList);
return hour_passflow_line_map0;
}
/**
* @return type: java.util.Map<java.lang.String,java.util.ArrayList<java.util.Map>>
* @author: Administrator
* @date: 2017/11/22 16:30
* @method: getHour_passflow_lineTable1
* @param: [workDate, hour]
* @desciption:
*/
public Map<String, ArrayList<Map>> getHour_passflow_lineTable1(String workDate, String hour) throws PropertyVetoException, SQLException {
if (hour_passflow_line_map1.get(hour) != null) {
return hour_passflow_line_map1;
}
hour_passflow_line_map1.clear();//清除过时数据,避免数据一直累积
String sql = "select citycode,lineid,workdate,offtime,predictionpassengernum from dm_passflow_line_dm where type = 1 and cycle = 30 and direction = 1 and workdate = " + workDate + " and offtime =" + hour;
PreparedStatement ps = null;
ResultSet rs = null;
ArrayList<Map> arrayList = new ArrayList<Map>();
Map lineid2PrePsg = new HashMap<String, Integer>();
ps = dpConnection.prepareStatement(sql);
rs = ps.executeQuery();
while (rs.next()) {
lineid2PrePsg.put(String.valueOf(rs.getInt("lineid")) + "@" + rs.getString("citycode"), rs.getInt("predictionpassengernum"));
}
rs.close();
arrayList.add(lineid2PrePsg);
hour_passflow_line_map1.put(hour, arrayList);
return hour_passflow_line_map1;
}
/**
* @return type: int
* @author: Administrator
* @date: 2017/11/22 16:32
* @method: lineId2HalfHourPsg
* @param: [cityCode, lineId, workDate, hour]
* @desciption:
*/
public int lineId2HalfHourPsg(String cityCode, int lineId, String workDate, int hour) throws PropertyVetoException, SQLException {
Map<String, Integer> lineid2PrePsgMap0 = getHour_passflow_lineTable0(workDate, String.valueOf(hour)).get(String.valueOf(hour)).get(0);
Map<String, Integer> lineid2PrePsgMap1 = getHour_passflow_lineTable1(workDate, String.valueOf(hour)).get(String.valueOf(hour)).get(0);
String key = String.valueOf(lineId) + "@" + cityCode;
int hourPrePsg0;
if (lineid2PrePsgMap0.get(key) == null) {
LOG.error("no, workDate " + workDate + ",the lineId@cityCode is not exsit :" + key);
hourPrePsg0 = 0;
} else {
// LOG.error("yes, workDate " + workDate + ",the lineId@cityCode is exsit :" + key);
hourPrePsg0 = lineid2PrePsgMap0.get(key);
}
int hourPrePsg1;
if (lineid2PrePsgMap1.get(key) == null) {
LOG.error("no, workDate " + workDate + ",the lineId@cityCode is not exsit :" + key);
hourPrePsg1 = 0;
} else {
// LOG.error("yes, workDate " + workDate + ",the lineId@cityCode is exsit :" + key);
hourPrePsg1 = lineid2PrePsgMap1.get(key);
}
return hourPrePsg0 + hourPrePsg1;
}
}
| [
"858832387@qq.com"
] | 858832387@qq.com |
0b63efe0ea61b3f7d81cb3456faebd52c35d1447 | d1f95baefdbe6393467767788fb9e710a13f4869 | /src/test/java/com/alibaba/druid/bvt/pool/vendor/MySqlExceptionSorterTest_oceanbase.java | 04bd235ed33c5c15b2019cf7b1ac26571be8937d | [] | no_license | jilen/druid | 19cec538ba655ddde455ad7e63af45fad3ff94df | 0da4c693d3e1aa3d5506089887ee013964cce0bf | refs/heads/master | 2021-01-18T18:55:57.735649 | 2013-06-27T07:03:41 | 2013-06-27T07:03:41 | 11,017,656 | 9 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,106 | java | package com.alibaba.druid.bvt.pool.vendor;
import java.sql.SQLException;
import junit.framework.TestCase;
import org.junit.Assert;
import com.alibaba.druid.pool.vendor.MySqlExceptionSorter;
public class MySqlExceptionSorterTest_oceanbase extends TestCase {
public void test_true() throws Exception {
MySqlExceptionSorter sorter = new MySqlExceptionSorter();
Assert.assertTrue(sorter.isExceptionFatal(new SQLException("", "", -9000)));
}
public void test_true_1() throws Exception {
MySqlExceptionSorter sorter = new MySqlExceptionSorter();
Assert.assertTrue(sorter.isExceptionFatal(new SQLException("", "", -10000)));
}
public void test_false() throws Exception {
MySqlExceptionSorter sorter = new MySqlExceptionSorter();
Assert.assertFalse(sorter.isExceptionFatal(new SQLException("", "", -10001)));
}
public void test_false_1() throws Exception {
MySqlExceptionSorter sorter = new MySqlExceptionSorter();
Assert.assertFalse(sorter.isExceptionFatal(new SQLException("", "", -8000)));
}
}
| [
"szujobs@hotmail.com"
] | szujobs@hotmail.com |
11d680b556e79a2d8c690c17a2b7eab9fa82258d | 69dabb116f96b70403937d9dfd585da08c6aa9f8 | /police management system/src/police/Transfer.java | 370cbb303529830d76b60d6ef8e5b1dab7136e3d | [] | no_license | ankitesh97/Crime-management-system-Java- | b1b1d5507917fff2e4cbdc99589f56795fb1a1d9 | afe24d9cdd83e3f7d2234c985297af106b83a33d | refs/heads/master | 2016-09-13T16:26:51.725574 | 2016-05-20T13:18:52 | 2016-05-20T13:18:52 | 59,295,943 | 6 | 4 | null | null | null | null | UTF-8 | Java | false | false | 4,960 | java | package police;
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;
import javax.swing.JTextArea;
import javax.swing.JTable;
import javax.swing.JScrollPane;
import net.proteanit.sql.DbUtils;
import java.awt.Color;
import java.awt.Font;
public class Transfer extends JFrame {
private JPanel contentPane;
private JTextField id;
private JTable table;
private JTextField place;
Connection connection = null;
/**
* Create the frame.
*/
public Transfer() {
connection = sqliteconnection.dbconnector();
setTitle("TRANSFER");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 858, 571);
contentPane = new JPanel();
contentPane.setBackground(new Color(128, 0, 0));
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
JLabel lblEnterName = new JLabel("Enter ID Of Officer To Transfer");
lblEnterName.setForeground(new Color(255, 255, 255));
lblEnterName.setBounds(170, 439, 171, 17);
contentPane.add(lblEnterName);
JButton btnSearch = new JButton("Transfer");
btnSearch.addMouseListener(new MouseAdapter() {
@Override
public void mouseEntered(MouseEvent e) {
btnSearch.setBackground(new Color(250,235,46));
}
@Override
public void mouseExited(MouseEvent e) {
btnSearch.setBackground(new Color(240,240,240));
}
});
btnSearch.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if(id.getText().isEmpty() || place.getText().isEmpty())
JOptionPane.showMessageDialog(null, "FILL ALL DETAILS");
else{
try {
String query = "DELETE FROM OFFICERS WHERE ID='"+id.getText()+"' ";
PreparedStatement pst = connection.prepareStatement(query);
pst.execute();
JOptionPane.showMessageDialog(null, "TRANSFER LETTER WILL BE SENT");
} catch (Exception e1) {
e1.printStackTrace();
System.exit(1);
}
}
}
});
btnSearch.setBounds(541, 472, 89, 23);
contentPane.add(btnSearch);
JButton btnBack = new JButton("Back");
btnBack.addMouseListener(new MouseAdapter() {
@Override
public void mouseEntered(MouseEvent e) {
btnBack.setBackground(new Color(250,235,46));
}
@Override
public void mouseExited(MouseEvent e) {
btnBack.setBackground(new Color(240,240,240));
}
});
btnBack.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
dispose();
Commissoner temp = new Commissoner();
temp.setVisible(true);
}
});
btnBack.setBounds(753, 0, 89, 23);
contentPane.add(btnBack);
id = new JTextField();
Hover.effect(id);
id.setBounds(351, 433, 147, 29);
contentPane.add(id);
id.setColumns(10);
JScrollPane scrollPane = new JScrollPane();
scrollPane.setBounds(71, 67, 714, 352);
contentPane.add(scrollPane);
table = new JTable();
table.setFont(new Font("Tahoma", Font.BOLD, 11));
scrollPane.setViewportView(table);
JButton btnNewButton = new JButton("Load All Ofiicers");
btnNewButton.addMouseListener(new MouseAdapter() {
@Override
public void mouseEntered(MouseEvent e) {
btnNewButton.setBackground(new Color(250,235,46));
}
@Override
public void mouseExited(MouseEvent e) {
btnNewButton.setBackground(new Color(240,240,240));
}
});
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
String query = "SELECT ID,NAME,SURNAME,RANK,DATE FROM OFFICERS";
PreparedStatement pst = connection.prepareStatement(query);
ResultSet rs = pst.executeQuery();
while(rs.next()){
if(rs.getString("RANK").equals("COMMISSONER"));
else
table.setModel(DbUtils.resultSetToTableModel(rs));
}
} catch (Exception e1) {
e1.printStackTrace();
System.exit(1);
}
}
});
btnNewButton.setBounds(327, 30, 171, 23);
contentPane.add(btnNewButton);
place = new JTextField();
Hover.effect(place);
place.setBounds(349, 469, 149, 29);
contentPane.add(place);
place.setColumns(10);
JLabel lblEnterPlace = new JLabel("Enter Place ");
lblEnterPlace.setForeground(new Color(255, 255, 255));
lblEnterPlace.setBounds(170, 475, 74, 17);
contentPane.add(lblEnterPlace);
}
}
| [
"ankiteshguptas@gmail.com"
] | ankiteshguptas@gmail.com |
6af4fc6f487834e65a532199a930a39b9bb370df | e368d9adb1fe3b2d6e20c31835ff4abeea77e4ee | /workspace_1/Code_CTDL/src/lab1_mang_mot_chieu/Bai3.java | 46e5c48d33fcd5b71b011eb072ea541b9b180042 | [] | no_license | thanghoang07/java | 29edf868f79318672707be626d9105935fd83478 | 41d62d5e9f206f0459b9c3d42a8581fc5395b223 | refs/heads/master | 2020-05-07T13:45:13.479039 | 2019-04-10T09:59:34 | 2019-04-10T09:59:34 | 180,541,189 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,885 | java | /* Viết chương trình đ�?c vào n số nguyên
* (giá trị của các phần tử random từ 0 tới n),
* dừng lại khi nhập 0.
* Sau đó đếm số lần xuất hiện của từng số nguyên
*/
package lab1_mang_mot_chieu;
import java.util.Scanner;
public class Bai3 {
static int n;
static int i;
static int j;
private static Scanner nhapVao;
public static int[] taoMang(int n) {
nhapVao = new Scanner(System.in);
int[] mang = new int[n];
for (int i = 0; i < n; i++) {
System.out.print("Nhap phan tu thu " + i + ": \t");
mang[i] = nhapVao.nextInt();
if (mang[i] == 0)
break;
}
return mang;
}
public static void inMang(int[] mang) {
System.out.print("mang dung lai khi gap so khong: \n");
for (i = 0; i < mang.length; i++)
if (mang[i] != 0) {
System.out.print("|" + mang[i] + "|");
} else
System.out.print("");
}
public static void lietKe2(int[] mang, int n) {
for (int i = 0; i < n; i++) {
int dem = 0;
for (int j = 0; j < n; j++) {
if (mang[i] == mang[j])
dem++;
}
if (mang[i] != 0)
System.out.print("\n" + mang[i] + ": " + dem);
}
}
public static void lietKe(int[] mang) {
int dem = 0;
for (int i = 0; i < mang.length; i++) {
if (mang[i] != 0) {
dem = 0;
for (int j = 0; j < mang.length; j++) {
if (mang[i] == mang[j]) {
if (i <= j) {
dem++;
} else {
break;
}
}
}
if (dem != 0) {
System.out.printf("\n%d xuat hien %d lan", mang[i], dem);
}
} else {
System.out.print("");
}
}
}
public static void main(String[] args) {
nhapVao = new Scanner(System.in);
System.out.print("Nhap so phan tu: ");
int n = nhapVao.nextInt();
int[] mang = new int[n];
mang = taoMang(n);
inMang(mang);
System.out.println();
lietKe2(mang, n);
System.out.println();
lietKe(mang);
}
}
| [
"thanghoang07@outlook.com"
] | thanghoang07@outlook.com |
170abb7b2ed8bacd353e23a3e9db7e86e17f2dc9 | ac0d8c02ec56d4dd4f4604cff23eb46c2c363ccd | /connessione-db/src/main/java/it/dstech/connessionedb/InterrogazioneDataBase.java | 01c9e94550b548ebfb41b68fde5e57f5389cf7cf | [] | no_license | luigipisciuneri/Connessione_DB | d4ee56afedffe5635c9e5d653580ce39eea63ca1 | 0397610c4274077ce8e4766ba3f3cff2f8b255ce | refs/heads/master | 2022-06-26T22:45:34.542031 | 2020-03-12T01:07:05 | 2020-03-12T01:07:05 | 246,707,416 | 0 | 0 | null | 2022-06-21T02:58:05 | 2020-03-12T00:21:38 | Java | ISO-8859-13 | Java | false | false | 4,050 | java | package it.dstech.connessionedb;
/*
*Creare un programma Java che si colleghi allo schema WORLD e
* che permetta le seguenti operazioni:
1. Trovare tutte le cittą di un dato "countrycode"
2. Data una nazione, trovare la cittą pił popolosa
3. Data una forma di governo tra quelle presenti
nel database (suggerimento: select distinct....), indicare lo stato con estensione territoriale pił grande.
*/
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Scanner;
public class InterrogazioneDataBase {
public static void main(String[] args) throws ClassNotFoundException, SQLException {
Scanner input=new Scanner(System.in);
Class.forName("com.mysql.cj.jdbc.Driver"); // in questo punto carichia nella JVM in esecuzione la nostra libreria
String password ="gigi"; // la vostra password
String username = "root"; // la vostra username
String url = "jdbc:mysql://localhost:3306/world?useUnicode=true&useLegacyDatetimeCode=false&serverTimezone=UTC&createDatabaseIfNotExist=true&allowPublicKeyRetrieval=true&useSSL=false";
Connection connessione = DriverManager.getConnection(url, username, password);
Statement statement = connessione.createStatement();
while (true) {
System.out.println("Cosa vuoi fare");
menu();
int scelta = input.nextInt();
input.nextLine();
switch (scelta) {
case 1: {
System.out.println("Inserisci la nazione");
String countrycode=input.nextLine();
ResultSet risultatoQuery = statement.executeQuery("select * from city where CountryCode ='"+countrycode+"';");
while(risultatoQuery.next()) {
int id = risultatoQuery.getInt(1);
String nome = risultatoQuery.getString("Name");
int pop = risultatoQuery.getInt(5);
String codiceStato=risultatoQuery.getString("CountryCode");
System.out.println(id + " " + nome + " - " + pop +" - "+codiceStato);
}
}
break;
case 2: {
System.out.println("Inserisci la sigla della nazione");
String countrycode=input.nextLine();
ResultSet risultatoQuery = statement.executeQuery("select * from city where CountryCode ='"+countrycode+"'order by Population desc limit 1;");
while(risultatoQuery.next()) {
String nome = risultatoQuery.getString("Name");
int pop = risultatoQuery.getInt(5);
String codiceStato=risultatoQuery.getString("CountryCode");
System.out.println("Citta " + nome + " Abitanti " + pop +" Nazione "+codiceStato);
}
}
break;
case 3:{
System.out.println("Lista delle forme di governo");
ResultSet risultatoQuery = statement.executeQuery("select distinct(GovernmentForm) from country order by GovernmentForm asc;");
while(risultatoQuery.next()) {
String formaGoverno = risultatoQuery.getString("GovernmentForm");
System.out.println("Forma di governo " + formaGoverno);
}
System.out.println(" ");
System.out.println("Scegli una forma di governo e digitela");
String fG=input.nextLine();
ResultSet risultatoQuery2 = statement.executeQuery("select name, SurfaceArea, GovernmentForm from country where GovernmentForm ='"+fG+"' order by SurfaceArea desc limit 1;");
while(risultatoQuery2.next()) {
String stato = risultatoQuery2.getString("name");
Double superficie=risultatoQuery2.getDouble("SurfaceArea");
String formaGoverno=risultatoQuery2.getString("GovernmentForm");
System.out.println("Stato " + stato+ " Superficie "+superficie+" Forma_Governo "+formaGoverno);
System.out.println(" ");
}
break;
}
case 4:{
break;
}
default: {
System.exit(0);
}
}
}
}
private static void menu() {
System.out.println("1. Trovare tutte le cittą di un dato countrycode");
System.out.println("2. Data una nazione, trovare la cittą pił popolosa");
System.out.println("3. Data una forma di governo tra quelle presenti indicare lo stato con estensione territoriale pił grande ");
}
}
| [
"luigipisciuneri@gmail.com"
] | luigipisciuneri@gmail.com |
64e552f9d9ce8c4dddf2dd91955ffb6f2ecc0082 | 3029d8be270c0434446cd836247e3b0cd7ce5d33 | /src/java_med_kyrs/LKPageControll.java | a8a44acacfa3336cdd30e3fa32de04f781a5cddb | [] | no_license | Sve-Toch/MED | 4ddbcb20eea05bcdf94aea9cfe6bb6f6e7defda4 | c911f5bcd983626b7569907d6a60cec6ccb63edd | refs/heads/master | 2016-09-06T09:31:02.534320 | 2014-06-20T14:58:13 | 2014-06-20T14:58:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 597 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package java_med_kyrs;
/**
*
* @author Надежда
*/
public class LKPageControll {
public static void AdminOpen()
{
Admin.GOF.Admin_search as=new Admin.GOF.Admin_search();
as.setVisible(true);
}
public static void DoctorOpen()
{
Admin.GOF.Doctor_search ds = new Admin.GOF.Doctor_search();
ds.setVisible(true);
}
}
| [
"Надежда@172.16.48.174"
] | Надежда@172.16.48.174 |
33b851ff4e080590026c37da34c74e07b1e325dc | 2bf38ab26397d7956432e769304940c8916fa4a8 | /src/test/java/com/alisarrian/_8kyu/GrassHopperTest.java | 8247c4ea1aff37b87899ad6bc87b579297244554 | [] | no_license | LucasBulczak/code_wars | 891f580bb3a20fefb0a28ba79fe77b766aece172 | f9050700c7e8ce7369d15668d07dccbedbbe9ed3 | refs/heads/master | 2022-12-26T05:43:59.329152 | 2020-10-05T15:29:21 | 2020-10-05T15:29:21 | 298,868,904 | 0 | 0 | null | 2020-10-05T15:29:22 | 2020-09-26T17:48:57 | Java | UTF-8 | Java | false | false | 642 | java | package com.alisarrian._8kyu;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class GrassHopperTest {
@Test
public void shouldReturn1WhenGiven1() {
assertEquals(1,
GrassHopper.summation(1));
}
@Test
void shouldReturn3WhenGiven2() {
assertEquals(3,
GrassHopper.summation(2));
}
@Test
void shouldReturn6WhenGiven3() {
assertEquals(6,
GrassHopper.summation(3));
}
@Test
public void shouldReturn36WhenGiven8() {
assertEquals(36,
GrassHopper.summation(8));
}
} | [
"lucas.bulczak@gmail.com"
] | lucas.bulczak@gmail.com |
b840f966ba786cfa0eb152a38b244d823f37f94b | 049afbd75e29c467763494c6dc9e1be17fb599a3 | /Pokemon/src/main/java/com/sg/pokemon/daos/ItemDao.java | 64649fd20d3fcdc626e43680451a1b1bf58f1d92 | [] | no_license | nejichung/Projects | 3172a7f5f800d25fa7a1f13552d115c71417da8e | 0ded621ff61ce8389842f6d0f2669fabad23ee99 | refs/heads/master | 2022-06-24T01:42:45.792665 | 2019-09-18T00:51:36 | 2019-09-18T00:51:36 | 185,684,981 | 0 | 0 | null | 2022-06-21T01:06:58 | 2019-05-08T22:00:35 | Java | UTF-8 | Java | false | false | 277 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.sg.pokemon.daos;
/**
*
* @author Jacob
*/
public interface ItemDao {
}
| [
"jacobchung07@live"
] | jacobchung07@live |
3e907c8235f1bd78be03f10a7add11bfac96aa44 | 06bdc623210f6e81566f91094040cd1e6ed096ee | /src/main/java/oidc_support/HeaderMapRequestWrapper.java | 2248a696863cf7dc5aafce301e47b233e9c2fbbd | [] | no_license | jbucy/mstroidc | 83127843774511d471e4db8e2c1f239216cebb74 | b845c043ba18a78935c00e3d4bb09f663218895e | refs/heads/master | 2020-05-09T23:17:00.683889 | 2019-04-22T19:19:53 | 2019-04-22T19:19:53 | 181,497,578 | 0 | 0 | null | 2019-04-22T19:19:54 | 2019-04-15T13:53:47 | Java | UTF-8 | Java | false | false | 1,895 | java | package oidc_support;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
/**
*
* @author hfaheem
* @DATE 04/17/2019
*
* This class use to add/fetch custom header parameters from the HTTP header.
* getheader() method also return custom HTTP header parameter. Return null if parameter not exist.
* addHeader() method use to add custom parameters into the HTTP header.
*
* Note: Parameters are store in the HTTP header as a KEY/VALUE pair
* and Keys are case sensitive.
*
*
* */
public class HeaderMapRequestWrapper extends HttpServletRequestWrapper {
public HeaderMapRequestWrapper(HttpServletRequest request) {
super(request);
}
private Map<String, String> headerMap = new HashMap<String, String>();
/**
* This method use for adding custom value in to the HTTP header.
* HTTP header map the custom values as KEY/VALUE pair
*
* @param name
* @param value
*/
public void addHeader(String name, String value) {
headerMap.put(name, value);
}
@Override
public String getHeader(String name) {
String headerValue = super.getHeader(name);
if (headerMap.containsKey(name)) {
headerValue = headerMap.get(name);
}
return headerValue;
}
/**
* get the Header names
*/
@Override
public Enumeration<String> getHeaderNames() {
List<String> names = Collections.list(super.getHeaderNames());
for (String name : headerMap.keySet()) {
names.add(name);
}
return Collections.enumeration(names);
}
@Override
public Enumeration<String> getHeaders(String name) {
List<String> values = Collections.list(super.getHeaders(name));
if (headerMap.containsKey(name)) {
values.add(headerMap.get(name));
}
return Collections.enumeration(values);
}
}
| [
"hfaheem@icct.com"
] | hfaheem@icct.com |
f92313ca2dcdcc6ba9f95fb9bd852848574077ae | cf6b87360afe28cfc21c6a8b4f9bf68a182b8107 | /Curso Java/LaboratorioPeliculas/src/mx/com/gm/peliculas/excepciones/LecturaDatosEx.java | 5cd170fa8254d94f261e972efa64f0e72b317550 | [] | no_license | ExePtion31/Java | fbb57b4d65b3e418cb2045c6bce7ce07a7b549a9 | 85ef92630ac11050da02d435255e5e4c765a66e1 | refs/heads/master | 2023-08-17T06:44:32.114943 | 2021-10-07T01:47:33 | 2021-10-07T01:47:33 | 403,150,717 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 175 | java | package mx.com.gm.peliculas.excepciones;
public class LecturaDatosEx extends AccesoDatosEx{
public LecturaDatosEx(String mensaje) {
super(mensaje);
}
}
| [
"giovancito113@gmail.com"
] | giovancito113@gmail.com |
0cb502afc8755cfc16beb61010af4ad77a374aa6 | 488e8943b90179cbec2f44836ad594ac54f84106 | /src/com/start/test/HelloWorld.java | f7d1500c8b373f1cd9e2a256722cc76177d5b3a0 | [] | no_license | williamchengit/antTest | 515ea1c124b42823ddc3bd8549956b4ba9f0ee34 | 469d549051358ae7864949a26c1748db2a0a547c | refs/heads/master | 2021-01-22T03:01:33.835870 | 2014-07-15T09:27:53 | 2014-07-15T09:27:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 338 | java | package com.start.test;
import org.apache.log4j.Logger;
import org.apache.log4j.BasicConfigurator;
public class HelloWorld
{
static Logger logger = Logger.getLogger(HelloWorld.class);
public static void main(String[] args)
{
BasicConfigurator.configure();
logger.info("Hello World");
// System.out.println("Hello World");
}
} | [
"cavenchen@gmail.com"
] | cavenchen@gmail.com |
b72e9084987758688467956309f71b48f0e32908 | d58a1957b72fe9ea7d3dd2c1a3d0865ad751acf4 | /GreenShop/src/java/model/Comment.java | 88e9fb03e34ea2d6de3a5875c4a9c1920802568f | [] | no_license | linhnguyenviet/GreenShop-Java | 6924e38d5226caa1f5d00c15824d80f363ac5c13 | 1cf469b8e0e2e9b80bfcaf9500da1c384d064d16 | refs/heads/master | 2020-08-04T17:49:51.006486 | 2019-11-17T14:55:03 | 2019-11-17T14:55:03 | 212,226,748 | 8 | 1 | null | 2019-11-17T14:55:04 | 2019-10-02T00:42:25 | Java | UTF-8 | Java | false | false | 1,159 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package model;
/**
*
* @author jakes
*/
public class Comment {
private int commentID;
private int cID;
private int fID;
private String commentary;
public Comment(){
}
public Comment(int commentID, int cID, int fID, String commentary) {
this.commentID = commentID;
this.cID = cID;
this.fID = fID;
this.commentary = commentary;
}
public int getCommentID() {
return commentID;
}
public void setCommentID(int commentID) {
this.commentID = commentID;
}
public int getcID() {
return cID;
}
public void setcID(int cID) {
this.cID = cID;
}
public int getfID() {
return fID;
}
public void setfID(int fID) {
this.fID = fID;
}
public String getCommentary() {
return commentary;
}
public void setCommentary(String commentary) {
this.commentary = commentary;
}
}
| [
"jakes.nguyen@gmail.com"
] | jakes.nguyen@gmail.com |
c379e463fedf24b1602c29a42a2112edac7a41da | 9838dedede6fdca184a35028074cf9ddf0f3e1c6 | /src/main/java/com.shestakam/Application.java | 91725f874aa4bcab4d7b0d9b186788616e366515 | [] | no_license | AlexandrShestak/springBoot | bd4637c77d625a26f3e45b61336cfa2cdc39e8fa | 4718c447270455fbcb75f53d3b4dd445fbadf294 | refs/heads/master | 2021-01-15T13:06:49.518025 | 2016-06-04T13:33:28 | 2016-06-04T13:33:28 | 58,147,067 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 684 | java | package com.shestakam;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import java.util.Arrays;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
ApplicationContext ctx = SpringApplication.run(Application.class, args);
/* System.out.println("Let's inspect the beans provided by Spring Boot:");
String[] beanNames = ctx.getBeanDefinitionNames();
Arrays.sort(beanNames);
for (String beanName : beanNames) {
System.out.println(beanName);
}*/
}
} | [
"shestakalexandr@mail.ru"
] | shestakalexandr@mail.ru |
1e524999c75c320a0de6f2f9d1e9ec98d443453c | bc0d30e8c54b47f7866cbc74c816d1fd5c54bc6e | /src/com/ibinq/abstract_factory/Human.java | fce4d8df6a822d2f18a793d827a17f3b01f64bff | [] | no_license | ibinq/Design-pattern | 8dd158959935022cc293d87de5cfad673f9c7aff | 0044bdc451a198a4e88255fa5ae59a33f9f3e24c | refs/heads/master | 2021-08-11T23:09:44.156334 | 2021-08-03T01:53:37 | 2021-08-03T01:53:37 | 85,034,630 | 0 | 0 | null | 2017-04-11T02:46:38 | 2017-03-15T05:55:53 | Java | UTF-8 | Java | false | false | 446 | java | package com.ibinq.abstract_factory;
/**
* Created by Administrator on 2017/4/11.
*/
public interface Human {
//首先定义什么是人类
//人是愉快的,会笑的,本来是想用smile表示,想了一下laugh更合适,好长时间没有大笑了;
public void laugh();
//人类还会哭,代表痛苦
public void cry();
//人类会说话
public void talk();
//定义性别
public void sex();
}
| [
"zhoubingl_l@163.com"
] | zhoubingl_l@163.com |
97c978d3e4e0ecc57142b205c09db4d891f94e83 | f2d7bf2d5db9432bca041d10b0720df67755b062 | /FrameworkWeb/doc/sample source/3일차/FrameworkWeb/src/ch05/magazine/model/MagazineRowMapper.java | 773210c8b8250f5d467e209bc838512a3da887a1 | [] | no_license | crazyjin7/sds-java-framework | 0da0a1c620ccab63181fdf424746977874c6b138 | 1bce211d81e1f1dbb050fa5ac0c6162900d84f36 | refs/heads/master | 2016-09-10T20:11:12.813358 | 2009-11-20T07:20:04 | 2009-11-20T07:20:04 | 32,116,602 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 546 | java | package ch05.magazine.model;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.springframework.jdbc.core.RowMapper;
public class MagazineRowMapper implements RowMapper{
// rs -> °´Ã¼·Î ¸ÅÇÎ
public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
Magazine result = new Magazine();
result.setMagazineId(rs.getInt("magazineId"));
result.setTitle(rs.getString("title"));
result.setPrice(rs.getInt("price"));
result.setCreated(rs.getDate("created"));
return result;
}
}
| [
"crazyjin7@ddb2e5e6-d286-11de-a69b-f5a595c35080"
] | crazyjin7@ddb2e5e6-d286-11de-a69b-f5a595c35080 |
015239cb099378774cf5272b4e5a224b28070922 | caf8647fed16a3df827145e6a3f90c0a0da83163 | /app/build/generated/source/r/debug/com/ThomasHorgaGmailCom/JustMaBitCnx/R.java | cf2edf232037d26f61d5e76da587c4466fc402f1 | [] | no_license | scseanchow/JustMaBit | 44a4aa213f77ba105b47cab712dc30bf362817be | 08751c3f1e4b4225b50b8a65eceebc9f4a63e98b | refs/heads/master | 2020-12-26T01:50:15.533148 | 2016-09-27T16:15:45 | 2016-09-27T16:15:45 | 68,442,494 | 0 | 0 | null | 2016-09-17T09:06:39 | 2016-09-17T09:06:38 | null | UTF-8 | Java | false | false | 501,708 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.ThomasHorgaGmailCom.JustMaBitCnx;
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_fab_in=0x7f05000a;
public static final int design_fab_out=0x7f05000b;
public static final int design_snackbar_in=0x7f05000c;
public static final int design_snackbar_out=0x7f05000d;
}
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=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 actionBarItemBackground=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 actionBarPopupTheme=0x7f01009f;
/** <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=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 actionBarSplitStyle=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 actionBarStyle=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 actionBarTabBarStyle=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 actionBarTabStyle=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 actionBarTabTextStyle=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 actionBarTheme=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 actionBarWidgetTheme=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 actionButtonStyle=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 actionDropDownStyle=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f010051;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f0100a7;
/** <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=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 actionModeBackground=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 actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=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 actionModePasteDrawable=0x7f0100b0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=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 actionModeSelectAllDrawable=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 actionModeShareDrawable=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 actionModeSplitBackground=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 actionModeStyle=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 actionModeWebSearchDrawable=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 actionOverflowButtonStyle=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 actionOverflowMenuStyle=0x7f01009e;
/** <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=0x7f010053;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=0x7f010052;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=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 alertDialogButtonGroupStyle=0x7f0100ea;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 alertDialogStyle=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 alertDialogTheme=0x7f0100ec;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010028;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f010044;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f010045;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=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 background=0x7f01000c;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f01000e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f01000d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f01010e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f01010f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 behavior_overlapTop=0x7f010062;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 borderlessButtonStyle=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 buttonBarButtonStyle=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 buttonBarNegativeButtonStyle=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=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 buttonBarPositiveButtonStyle=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=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 buttonPanelSideLayout=0x7f01001f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=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 buttonStyleSmall=0x7f0100f3;
/** <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=0x7f010038;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f010039;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=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 checkedTextViewStyle=0x7f0100f5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 closeItemLayout=0x7f01001c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f010105;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010104;
/** <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=0x7f010035;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f010031;
/** <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=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 colorAccent=0x7f0100e2;
/** <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=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 colorControlActivated=0x7f0100e4;
/** <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=0x7f0100e5;
/** <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=0x7f0100e3;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f0100e0;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=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 colorSwitchThumbNormal=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 commitIcon=0x7f01006c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f010016;
/** <p>Must be a color value, in 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=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int controlBackground=0x7f0100e8;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f01008b;
/** <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=0x7f01008c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f01008d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f01000f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f010066;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 dialogTheme=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>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static final int displayOptions=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f0100c6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 dividerVertical=0x7f0100c5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 drawerArrowStyle=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f0100d8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 editTextBackground=0x7f0100cd;
/** <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=0x7f0100cc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100f6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f01001a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f01001e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f010024;
/** <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=0x7f010036;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMargin=0x7f01002b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=0x7f01002f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginEnd=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 expandedTitleMarginStart=0x7f01002c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f010030;
/** <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>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=0x7f010049;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int foregroundInsidePadding=0x7f01004c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int headerLayout=0x7f01005a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f010015;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01008f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f010009;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=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 imageButtonStyle=0x7f0100ce;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f010012;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f01001d;
/** <p>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=0x7f010061;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=0x7f010002;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010058;
/** <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=0x7f010056;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f010059;
/** <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=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=0x7f01003a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f010063;
/** <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=0x7f01005d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_anchor=0x7f01003d;
/** <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=0x7f01003f;
/** <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=0x7f01003c;
/** <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=0x7f010029;
/** <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=0x7f01002a;
/** <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=0x7f01003e;
/** <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=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 layout_scrollInterpolator=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 listChoiceBackgroundIndicator=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 listDividerAlertDialog=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 listItemLayout=0x7f010023;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=0x7f010020;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f0100d9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f0100d5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100d4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=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 listPreferredItemPaddingRight=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 logo=0x7f01000a;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f010108;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f010070;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010103;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 menu=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 multiChoiceItemLayout=0x7f010021;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f010107;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010106;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int navigationMode=0x7f010004;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f01005b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=0x7f0100dc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100de;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=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 popupTheme=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f0100cb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010054;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int pressedTranslationZ=0x7f01004a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=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 queryHint=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=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 ratingBarStyle=0x7f0100f8;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01005f;
/** <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=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 searchHintIcon=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=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 seekBarStyle=0x7f0100f9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=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 selectableItemBackgroundBorderless=0x7f0100c3;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f010050;
/** <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=0x7f01004e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010022;
/** <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=0x7f01005e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010041;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100fa;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010076;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 state_above_anchor=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 statusBarBackground=0x7f01003b;
/** <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=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f01006f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitle=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f0100fd;
/** <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=0x7f01010a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f01006d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 switchPadding=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100fb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f01007b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01007a;
/** <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=0x7f01007d;
/** <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=0x7f010078;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f010079;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01007f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01007e;
/** <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=0x7f01007c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010087;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f010086;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f010085;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f010083;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f010084;
/** <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=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f010080;
/** <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=0x7f010081;
/** <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=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=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 textAppearanceListItem=0x7f0100da;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100db;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=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 textAppearanceSmallPopupMenu=0x7f0100b7;
/** <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=0x7f0100ed;
/** <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=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=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 thickness=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 thumbTextPadding=0x7f010072;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int title=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 titleMarginBottom=0x7f010102;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 titleMarginStart=0x7f0100ff;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010101;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 titleTextAppearance=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 titleTextColor=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 titleTextStyle=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarId=0x7f010034;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=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 toolbarStyle=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 track=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f01006b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 windowActionBarOverlay=0x7f010092;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f010093;
/** <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=0x7f010097;
/** <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=0x7f010095;
/** <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=0x7f010094;
/** <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=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>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=0x7f010098;
/** <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=0x7f010099;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010091;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f070003;
public static final int abc_action_bar_embed_tabs_pre_jb=0x7f070001;
public static final int abc_action_bar_expanded_action_views_exclusive=0x7f070004;
public static final int abc_allow_stacked_button_bar=0x7f070000;
public static final int abc_config_actionMenuItemAllCaps=0x7f070005;
public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f070002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f070006;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f070007;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0046;
public static final int abc_background_cache_hint_selector_material_light=0x7f0b0047;
public static final int abc_color_highlight_material=0x7f0b0048;
public static final int abc_input_method_navigation_guard=0x7f0b0000;
public static final int abc_primary_text_disable_only_material_dark=0x7f0b0049;
public static final int abc_primary_text_disable_only_material_light=0x7f0b004a;
public static final int abc_primary_text_material_dark=0x7f0b004b;
public static final int abc_primary_text_material_light=0x7f0b004c;
public static final int abc_search_url_text=0x7f0b004d;
public static final int abc_search_url_text_normal=0x7f0b0001;
public static final int abc_search_url_text_pressed=0x7f0b0002;
public static final int abc_search_url_text_selected=0x7f0b0003;
public static final int abc_secondary_text_material_dark=0x7f0b004e;
public static final int abc_secondary_text_material_light=0x7f0b004f;
public static final int accent_material_dark=0x7f0b0004;
public static final int accent_material_light=0x7f0b0005;
public static final int background_floating_material_dark=0x7f0b0006;
public static final int background_floating_material_light=0x7f0b0007;
public static final int background_material_dark=0x7f0b0008;
public static final int background_material_light=0x7f0b0009;
public static final int bright_foreground_disabled_material_dark=0x7f0b000a;
public static final int bright_foreground_disabled_material_light=0x7f0b000b;
public static final int bright_foreground_inverse_material_dark=0x7f0b000c;
public static final int bright_foreground_inverse_material_light=0x7f0b000d;
public static final int bright_foreground_material_dark=0x7f0b000e;
public static final int bright_foreground_material_light=0x7f0b000f;
public static final int button_material_dark=0x7f0b0010;
public static final int button_material_light=0x7f0b0011;
public static final int colorAccent=0x7f0b0012;
public static final int colorPrimary=0x7f0b0013;
public static final int colorPrimaryDark=0x7f0b0014;
public static final int design_fab_shadow_end_color=0x7f0b0015;
public static final int design_fab_shadow_mid_color=0x7f0b0016;
public static final int design_fab_shadow_start_color=0x7f0b0017;
public static final int design_fab_stroke_end_inner_color=0x7f0b0018;
public static final int design_fab_stroke_end_outer_color=0x7f0b0019;
public static final int design_fab_stroke_top_inner_color=0x7f0b001a;
public static final int design_fab_stroke_top_outer_color=0x7f0b001b;
public static final int design_snackbar_background_color=0x7f0b001c;
public static final int design_textinput_error_color=0x7f0b001d;
public static final int dim_foreground_disabled_material_dark=0x7f0b001e;
public static final int dim_foreground_disabled_material_light=0x7f0b001f;
public static final int dim_foreground_material_dark=0x7f0b0020;
public static final int dim_foreground_material_light=0x7f0b0021;
public static final int foreground_material_dark=0x7f0b0022;
public static final int foreground_material_light=0x7f0b0023;
public static final int highlighted_text_material_dark=0x7f0b0024;
public static final int highlighted_text_material_light=0x7f0b0025;
public static final int hint_foreground_material_dark=0x7f0b0026;
public static final int hint_foreground_material_light=0x7f0b0027;
public static final int material_blue_grey_800=0x7f0b0028;
public static final int material_blue_grey_900=0x7f0b0029;
public static final int material_blue_grey_950=0x7f0b002a;
public static final int material_deep_teal_200=0x7f0b002b;
public static final int material_deep_teal_500=0x7f0b002c;
public static final int material_grey_100=0x7f0b002d;
public static final int material_grey_300=0x7f0b002e;
public static final int material_grey_50=0x7f0b002f;
public static final int material_grey_600=0x7f0b0030;
public static final int material_grey_800=0x7f0b0031;
public static final int material_grey_850=0x7f0b0032;
public static final int material_grey_900=0x7f0b0033;
public static final int primary_dark_material_dark=0x7f0b0034;
public static final int primary_dark_material_light=0x7f0b0035;
public static final int primary_material_dark=0x7f0b0036;
public static final int primary_material_light=0x7f0b0037;
public static final int primary_text_default_material_dark=0x7f0b0038;
public static final int primary_text_default_material_light=0x7f0b0039;
public static final int primary_text_disabled_material_dark=0x7f0b003a;
public static final int primary_text_disabled_material_light=0x7f0b003b;
public static final int ripple_material_dark=0x7f0b003c;
public static final int ripple_material_light=0x7f0b003d;
public static final int secondary_text_default_material_dark=0x7f0b003e;
public static final int secondary_text_default_material_light=0x7f0b003f;
public static final int secondary_text_disabled_material_dark=0x7f0b0040;
public static final int secondary_text_disabled_material_light=0x7f0b0041;
public static final int switch_thumb_disabled_material_dark=0x7f0b0042;
public static final int switch_thumb_disabled_material_light=0x7f0b0043;
public static final int switch_thumb_material_dark=0x7f0b0050;
public static final int switch_thumb_material_light=0x7f0b0051;
public static final int switch_thumb_normal_material_dark=0x7f0b0044;
public static final int switch_thumb_normal_material_light=0x7f0b0045;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f08000d;
public static final int abc_action_bar_default_height_material=0x7f080001;
public static final int abc_action_bar_default_padding_end_material=0x7f08000e;
public static final int abc_action_bar_default_padding_start_material=0x7f08000f;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f08001a;
public static final int abc_action_bar_overflow_padding_end_material=0x7f08001b;
public static final int abc_action_bar_overflow_padding_start_material=0x7f08001c;
public static final int abc_action_bar_progress_bar_size=0x7f080002;
public static final int abc_action_bar_stacked_max_height=0x7f08001d;
public static final int abc_action_bar_stacked_tab_max_width=0x7f08001e;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f08001f;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f080020;
public static final int abc_action_button_min_height_material=0x7f080021;
public static final int abc_action_button_min_width_material=0x7f080022;
public static final int abc_action_button_min_width_overflow_material=0x7f080023;
public static final int abc_alert_dialog_button_bar_height=0x7f080000;
public static final int abc_button_inset_horizontal_material=0x7f080024;
public static final int abc_button_inset_vertical_material=0x7f080025;
public static final int abc_button_padding_horizontal_material=0x7f080026;
public static final int abc_button_padding_vertical_material=0x7f080027;
public static final int abc_config_prefDialogWidth=0x7f080005;
public static final int abc_control_corner_material=0x7f080028;
public static final int abc_control_inset_material=0x7f080029;
public static final int abc_control_padding_material=0x7f08002a;
public static final int abc_dialog_fixed_height_major=0x7f080006;
public static final int abc_dialog_fixed_height_minor=0x7f080007;
public static final int abc_dialog_fixed_width_major=0x7f080008;
public static final int abc_dialog_fixed_width_minor=0x7f080009;
public static final int abc_dialog_list_padding_vertical_material=0x7f08002b;
public static final int abc_dialog_min_width_major=0x7f08000a;
public static final int abc_dialog_min_width_minor=0x7f08000b;
public static final int abc_dialog_padding_material=0x7f08002c;
public static final int abc_dialog_padding_top_material=0x7f08002d;
public static final int abc_disabled_alpha_material_dark=0x7f08002e;
public static final int abc_disabled_alpha_material_light=0x7f08002f;
public static final int abc_dropdownitem_icon_width=0x7f080030;
public static final int abc_dropdownitem_text_padding_left=0x7f080031;
public static final int abc_dropdownitem_text_padding_right=0x7f080032;
public static final int abc_edit_text_inset_bottom_material=0x7f080033;
public static final int abc_edit_text_inset_horizontal_material=0x7f080034;
public static final int abc_edit_text_inset_top_material=0x7f080035;
public static final int abc_floating_window_z=0x7f080036;
public static final int abc_list_item_padding_horizontal_material=0x7f080037;
public static final int abc_panel_menu_list_width=0x7f080038;
public static final int abc_search_view_preferred_width=0x7f080039;
public static final int abc_search_view_text_min_width=0x7f08000c;
public static final int abc_seekbar_track_background_height_material=0x7f08003a;
public static final int abc_seekbar_track_progress_height_material=0x7f08003b;
public static final int abc_select_dialog_padding_start_material=0x7f08003c;
public static final int abc_switch_padding=0x7f080017;
public static final int abc_text_size_body_1_material=0x7f08003d;
public static final int abc_text_size_body_2_material=0x7f08003e;
public static final int abc_text_size_button_material=0x7f08003f;
public static final int abc_text_size_caption_material=0x7f080040;
public static final int abc_text_size_display_1_material=0x7f080041;
public static final int abc_text_size_display_2_material=0x7f080042;
public static final int abc_text_size_display_3_material=0x7f080043;
public static final int abc_text_size_display_4_material=0x7f080044;
public static final int abc_text_size_headline_material=0x7f080045;
public static final int abc_text_size_large_material=0x7f080046;
public static final int abc_text_size_medium_material=0x7f080047;
public static final int abc_text_size_menu_material=0x7f080048;
public static final int abc_text_size_small_material=0x7f080049;
public static final int abc_text_size_subhead_material=0x7f08004a;
public static final int abc_text_size_subtitle_material_toolbar=0x7f080003;
public static final int abc_text_size_title_material=0x7f08004b;
public static final int abc_text_size_title_material_toolbar=0x7f080004;
public static final int activity_horizontal_margin=0x7f080019;
public static final int activity_vertical_margin=0x7f08004c;
public static final int design_appbar_elevation=0x7f08004d;
public static final int design_fab_border_width=0x7f08004e;
public static final int design_fab_content_size=0x7f08004f;
public static final int design_fab_elevation=0x7f080050;
public static final int design_fab_size_mini=0x7f080051;
public static final int design_fab_size_normal=0x7f080052;
public static final int design_fab_translation_z_pressed=0x7f080053;
public static final int design_navigation_elevation=0x7f080054;
public static final int design_navigation_icon_padding=0x7f080055;
public static final int design_navigation_icon_size=0x7f080056;
public static final int design_navigation_max_width=0x7f080057;
public static final int design_navigation_padding_bottom=0x7f080058;
public static final int design_navigation_padding_top_default=0x7f080018;
public static final int design_navigation_separator_vertical_padding=0x7f080059;
public static final int design_snackbar_action_inline_max_width=0x7f080010;
public static final int design_snackbar_background_corner_radius=0x7f080011;
public static final int design_snackbar_elevation=0x7f08005a;
public static final int design_snackbar_extra_spacing_horizontal=0x7f080012;
public static final int design_snackbar_max_width=0x7f080013;
public static final int design_snackbar_min_width=0x7f080014;
public static final int design_snackbar_padding_horizontal=0x7f08005b;
public static final int design_snackbar_padding_vertical=0x7f08005c;
public static final int design_snackbar_padding_vertical_2lines=0x7f080015;
public static final int design_snackbar_text_size=0x7f08005d;
public static final int design_tab_max_width=0x7f08005e;
public static final int design_tab_scrollable_min_width=0x7f080016;
public static final int design_tab_text_size=0x7f08005f;
public static final int design_tab_text_size_2line=0x7f080060;
public static final int disabled_alpha_material_dark=0x7f080061;
public static final int disabled_alpha_material_light=0x7f080062;
public static final int highlight_alpha_material_colored=0x7f080063;
public static final int highlight_alpha_material_dark=0x7f080064;
public static final int highlight_alpha_material_light=0x7f080065;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080066;
public static final int notification_large_icon_height=0x7f080067;
public static final int notification_large_icon_width=0x7f080068;
public static final int notification_subtext_size=0x7f080069;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
public static final int abc_cab_background_internal_bg=0x7f02000f;
public static final int abc_cab_background_top_material=0x7f020010;
public static final int abc_cab_background_top_mtrl_alpha=0x7f020011;
public static final int abc_control_background_material=0x7f020012;
public static final int abc_dialog_material_background_dark=0x7f020013;
public static final int abc_dialog_material_background_light=0x7f020014;
public static final int abc_edit_text_material=0x7f020015;
public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
public static final int abc_ic_clear_mtrl_alpha=0x7f020017;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
public static final int abc_ic_search_api_mtrl_alpha=0x7f020020;
public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021;
public static final int abc_item_background_holo_dark=0x7f020022;
public static final int abc_item_background_holo_light=0x7f020023;
public static final int abc_list_divider_mtrl_alpha=0x7f020024;
public static final int abc_list_focused_holo=0x7f020025;
public static final int abc_list_longpressed_holo=0x7f020026;
public static final int abc_list_pressed_holo_dark=0x7f020027;
public static final int abc_list_pressed_holo_light=0x7f020028;
public static final int abc_list_selector_background_transition_holo_dark=0x7f020029;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002a;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002b;
public static final int abc_list_selector_disabled_holo_light=0x7f02002c;
public static final int abc_list_selector_holo_dark=0x7f02002d;
public static final int abc_list_selector_holo_light=0x7f02002e;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f;
public static final int abc_popup_background_mtrl_mult=0x7f020030;
public static final int abc_ratingbar_full_material=0x7f020031;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020032;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020033;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f020034;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f020035;
public static final int abc_scrubber_track_mtrl_alpha=0x7f020036;
public static final int abc_seekbar_thumb_material=0x7f020037;
public static final int abc_seekbar_track_material=0x7f020038;
public static final int abc_spinner_mtrl_am_alpha=0x7f020039;
public static final int abc_spinner_textfield_background_material=0x7f02003a;
public static final int abc_switch_thumb_material=0x7f02003b;
public static final int abc_switch_track_mtrl_alpha=0x7f02003c;
public static final int abc_tab_indicator_material=0x7f02003d;
public static final int abc_tab_indicator_mtrl_alpha=0x7f02003e;
public static final int abc_text_cursor_material=0x7f02003f;
public static final int abc_textfield_activated_mtrl_alpha=0x7f020040;
public static final int abc_textfield_default_mtrl_alpha=0x7f020041;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020042;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020043;
public static final int abc_textfield_search_material=0x7f020044;
public static final int beacon=0x7f020045;
public static final int design_fab_background=0x7f020046;
public static final int design_snackbar_background=0x7f020047;
public static final int notification_template_icon_bg=0x7f020048;
}
public static final class id {
public static final int action0=0x7f0c0074;
public static final int action_bar=0x7f0c005a;
public static final int action_bar_activity_content=0x7f0c0000;
public static final int action_bar_container=0x7f0c0059;
public static final int action_bar_root=0x7f0c0055;
public static final int action_bar_spinner=0x7f0c0001;
public static final int action_bar_subtitle=0x7f0c003b;
public static final int action_bar_title=0x7f0c003a;
public static final int action_context_bar=0x7f0c005b;
public static final int action_divider=0x7f0c0078;
public static final int action_menu_divider=0x7f0c0002;
public static final int action_menu_presenter=0x7f0c0003;
public static final int action_mode_bar=0x7f0c0057;
public static final int action_mode_bar_stub=0x7f0c0056;
public static final int action_mode_close_button=0x7f0c003c;
public static final int activity_chooser_view_content=0x7f0c003d;
public static final int alertTitle=0x7f0c0049;
public static final int always=0x7f0c0032;
public static final int beginning=0x7f0c0030;
public static final int bottom=0x7f0c001c;
public static final int buttonPanel=0x7f0c0044;
public static final int buttonTip=0x7f0c006c;
public static final int cancel_action=0x7f0c0075;
public static final int center=0x7f0c001d;
public static final int center_horizontal=0x7f0c001e;
public static final int center_vertical=0x7f0c001f;
public static final int checkbox=0x7f0c0052;
public static final int chronometer=0x7f0c007b;
public static final int clip_horizontal=0x7f0c002b;
public static final int clip_vertical=0x7f0c002c;
public static final int collapseActionView=0x7f0c0033;
public static final int contentPanel=0x7f0c004a;
public static final int custom=0x7f0c0050;
public static final int customPanel=0x7f0c004f;
public static final int decor_content_parent=0x7f0c0058;
public static final int default_activity_button=0x7f0c0040;
public static final int design_menu_item_action_area=0x7f0c0073;
public static final int design_menu_item_action_area_stub=0x7f0c0072;
public static final int design_menu_item_text=0x7f0c0071;
public static final int design_navigation_view=0x7f0c0070;
public static final int disableHome=0x7f0c000e;
public static final int edit_query=0x7f0c005c;
public static final int end=0x7f0c0020;
public static final int end_padder=0x7f0c0080;
public static final int enterAlways=0x7f0c0015;
public static final int enterAlwaysCollapsed=0x7f0c0016;
public static final int exitUntilCollapsed=0x7f0c0017;
public static final int expand_activities_button=0x7f0c003e;
public static final int expanded_menu=0x7f0c0051;
public static final int fill=0x7f0c002d;
public static final int fill_horizontal=0x7f0c002e;
public static final int fill_vertical=0x7f0c0021;
public static final int fixed=0x7f0c0037;
public static final int home=0x7f0c0004;
public static final int homeAsUp=0x7f0c000f;
public static final int icon=0x7f0c0042;
public static final int ifRoom=0x7f0c0034;
public static final int image=0x7f0c003f;
public static final int imageView=0x7f0c006a;
public static final int info=0x7f0c007f;
public static final int item_touch_helper_previous_elevation=0x7f0c0005;
public static final int left=0x7f0c0022;
public static final int line1=0x7f0c0079;
public static final int line3=0x7f0c007d;
public static final int listMode=0x7f0c000b;
public static final int list_item=0x7f0c0041;
public static final int media_actions=0x7f0c0077;
public static final int middle=0x7f0c0031;
public static final int mini=0x7f0c002f;
public static final int multiply=0x7f0c0026;
public static final int navigation_header_container=0x7f0c006f;
public static final int never=0x7f0c0035;
public static final int none=0x7f0c0010;
public static final int normal=0x7f0c000c;
public static final int parallax=0x7f0c001a;
public static final int parentPanel=0x7f0c0046;
public static final int pin=0x7f0c001b;
public static final int progress_circular=0x7f0c0006;
public static final int progress_horizontal=0x7f0c0007;
public static final int radio=0x7f0c0054;
public static final int relativeLayout=0x7f0c0069;
public static final int right=0x7f0c0023;
public static final int screen=0x7f0c0027;
public static final int scroll=0x7f0c0018;
public static final int scrollIndicatorDown=0x7f0c004e;
public static final int scrollIndicatorUp=0x7f0c004b;
public static final int scrollView=0x7f0c004c;
public static final int scrollable=0x7f0c0038;
public static final int search_badge=0x7f0c005e;
public static final int search_bar=0x7f0c005d;
public static final int search_button=0x7f0c005f;
public static final int search_close_btn=0x7f0c0064;
public static final int search_edit_frame=0x7f0c0060;
public static final int search_go_btn=0x7f0c0066;
public static final int search_mag_icon=0x7f0c0061;
public static final int search_plate=0x7f0c0062;
public static final int search_src_text=0x7f0c0063;
public static final int search_voice_btn=0x7f0c0067;
public static final int select_dialog_listview=0x7f0c0068;
public static final int shortcut=0x7f0c0053;
public static final int showCustom=0x7f0c0011;
public static final int showHome=0x7f0c0012;
public static final int showTitle=0x7f0c0013;
public static final int snackbar_action=0x7f0c006e;
public static final int snackbar_text=0x7f0c006d;
public static final int snap=0x7f0c0019;
public static final int spacer=0x7f0c0045;
public static final int split_action_bar=0x7f0c0008;
public static final int src_atop=0x7f0c0028;
public static final int src_in=0x7f0c0029;
public static final int src_over=0x7f0c002a;
public static final int start=0x7f0c0024;
public static final int status_bar_latest_event_content=0x7f0c0076;
public static final int submit_area=0x7f0c0065;
public static final int tabMode=0x7f0c000d;
public static final int text=0x7f0c007e;
public static final int text2=0x7f0c007c;
public static final int textSpacerNoButtons=0x7f0c004d;
public static final int textView=0x7f0c006b;
public static final int time=0x7f0c007a;
public static final int title=0x7f0c0043;
public static final int title_template=0x7f0c0048;
public static final int top=0x7f0c0025;
public static final int topPanel=0x7f0c0047;
public static final int up=0x7f0c0009;
public static final int useLogo=0x7f0c0014;
public static final int view_offset_helper=0x7f0c000a;
public static final int withText=0x7f0c0036;
public static final int wrap_content=0x7f0c0039;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0a0002;
public static final int abc_config_activityShortDur=0x7f0a0003;
public static final int abc_max_action_buttons=0x7f0a0000;
public static final int cancel_button_image_alpha=0x7f0a0004;
public static final int design_snackbar_text_max_lines=0x7f0a0001;
public static final int status_bar_notification_info_maxnum=0x7f0a0005;
}
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_item_layout=0x7f040011;
public static final int abc_screen_content_include=0x7f040012;
public static final int abc_screen_simple=0x7f040013;
public static final int abc_screen_simple_overlay_action_mode=0x7f040014;
public static final int abc_screen_toolbar=0x7f040015;
public static final int abc_search_dropdown_item_icons_2line=0x7f040016;
public static final int abc_search_view=0x7f040017;
public static final int abc_select_dialog_material=0x7f040018;
public static final int activity_main=0x7f040019;
public static final int design_layout_snackbar=0x7f04001a;
public static final int design_layout_snackbar_include=0x7f04001b;
public static final int design_layout_tab_icon=0x7f04001c;
public static final int design_layout_tab_text=0x7f04001d;
public static final int design_menu_item_action_area=0x7f04001e;
public static final int design_navigation_item=0x7f04001f;
public static final int design_navigation_item_header=0x7f040020;
public static final int design_navigation_item_separator=0x7f040021;
public static final int design_navigation_item_subheader=0x7f040022;
public static final int design_navigation_menu=0x7f040023;
public static final int design_navigation_menu_item=0x7f040024;
public static final int notification_media_action=0x7f040025;
public static final int notification_media_cancel_action=0x7f040026;
public static final int notification_template_big_media=0x7f040027;
public static final int notification_template_big_media_narrow=0x7f040028;
public static final int notification_template_lines=0x7f040029;
public static final int notification_template_media=0x7f04002a;
public static final int notification_template_part_chronometer=0x7f04002b;
public static final int notification_template_part_time=0x7f04002c;
public static final int select_dialog_item_material=0x7f04002d;
public static final int select_dialog_multichoice_material=0x7f04002e;
public static final int select_dialog_singlechoice_material=0x7f04002f;
public static final int support_simple_spinner_dropdown_item=0x7f040030;
}
public static final class mipmap {
public static final int ic_launcher=0x7f030000;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f060000;
public static final int abc_action_bar_home_description_format=0x7f060001;
public static final int abc_action_bar_home_subtitle_description_format=0x7f060002;
public static final int abc_action_bar_up_description=0x7f060003;
public static final int abc_action_menu_overflow_description=0x7f060004;
public static final int abc_action_mode_done=0x7f060005;
public static final int abc_activity_chooser_view_see_all=0x7f060006;
public static final int abc_activitychooserview_choose_application=0x7f060007;
public static final int abc_capital_off=0x7f060008;
public static final int abc_capital_on=0x7f060009;
public static final int abc_search_hint=0x7f06000a;
public static final int abc_searchview_description_clear=0x7f06000b;
public static final int abc_searchview_description_query=0x7f06000c;
public static final int abc_searchview_description_search=0x7f06000d;
public static final int abc_searchview_description_submit=0x7f06000e;
public static final int abc_searchview_description_voice=0x7f06000f;
public static final int abc_shareactionprovider_share_with=0x7f060010;
public static final int abc_shareactionprovider_share_with_application=0x7f060011;
public static final int abc_toolbar_collapse_description=0x7f060012;
public static final int app_name=0x7f060014;
public static final int appbar_scrolling_view_behavior=0x7f060015;
public static final int character_counter_pattern=0x7f060016;
public static final int error_no_bluetooth_enabled=0x7f060017;
public static final int error_no_bluetooth_le=0x7f060018;
public static final int error_no_location_permission=0x7f060019;
public static final int requesting_location_access=0x7f06001a;
public static final int requesting_location_access_cancel=0x7f06001b;
public static final int requesting_location_access_ok=0x7f06001c;
public static final int requesting_location_access_rationale=0x7f06001d;
public static final int requesting_location_permission=0x7f06001e;
public static final int requesting_location_permission_rationale=0x7f06001f;
public static final int status_bar_notification_info_overflow=0x7f060013;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f09007e;
public static final int AlertDialog_AppCompat_Light=0x7f09007f;
public static final int Animation_AppCompat_Dialog=0x7f090080;
public static final int Animation_AppCompat_DropDownUp=0x7f090081;
public static final int AppTheme=0x7f090082;
public static final int Base_AlertDialog_AppCompat=0x7f090083;
public static final int Base_AlertDialog_AppCompat_Light=0x7f090084;
public static final int Base_Animation_AppCompat_Dialog=0x7f090085;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f090086;
public static final int Base_DialogWindowTitle_AppCompat=0x7f090087;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f090088;
public static final int Base_TextAppearance_AppCompat=0x7f090030;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f090031;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f090032;
public static final int Base_TextAppearance_AppCompat_Button=0x7f09001a;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f090033;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f090034;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f090035;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f090036;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f090037;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f090038;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090005;
public static final int Base_TextAppearance_AppCompat_Large=0x7f090039;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090006;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f09003a;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f09003b;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f09003c;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090007;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f09003d;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f090089;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09003e;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09003f;
public static final int Base_TextAppearance_AppCompat_Small=0x7f090040;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090008;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f090041;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090009;
public static final int Base_TextAppearance_AppCompat_Title=0x7f090042;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f09000a;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090043;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090044;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090045;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090046;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090047;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090048;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090049;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f09004a;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f09007a;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f09008a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f09004b;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f09004c;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09004d;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09004e;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f09008b;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09004f;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090050;
public static final int Base_Theme_AppCompat=0x7f090051;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f09008c;
public static final int Base_Theme_AppCompat_Dialog=0x7f09000b;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f09008d;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f09008e;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f09008f;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090002;
public static final int Base_Theme_AppCompat_Light=0x7f090052;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f090090;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09000c;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f090091;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f090092;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090093;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090003;
public static final int Base_ThemeOverlay_AppCompat=0x7f090094;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f090095;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f090096;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090097;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f090098;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09000d;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09000e;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090016;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f090017;
public static final int Base_V21_Theme_AppCompat=0x7f090053;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090054;
public static final int Base_V21_Theme_AppCompat_Light=0x7f090055;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090056;
public static final int Base_V22_Theme_AppCompat=0x7f090078;
public static final int Base_V22_Theme_AppCompat_Light=0x7f090079;
public static final int Base_V23_Theme_AppCompat=0x7f09007b;
public static final int Base_V23_Theme_AppCompat_Light=0x7f09007c;
public static final int Base_V7_Theme_AppCompat=0x7f090099;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f09009a;
public static final int Base_V7_Theme_AppCompat_Light=0x7f09009b;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f09009c;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f09009d;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f09009e;
public static final int Base_Widget_AppCompat_ActionBar=0x7f09009f;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900a0;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900a1;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090057;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090058;
public static final int Base_Widget_AppCompat_ActionButton=0x7f090059;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f09005a;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f09005b;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0900a2;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900a3;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090018;
public static final int Base_Widget_AppCompat_Button=0x7f09005c;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09005d;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09005e;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900a4;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f09007d;
public static final int Base_Widget_AppCompat_Button_Small=0x7f09005f;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f090060;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900a5;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090061;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090062;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900a6;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900a7;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090063;
public static final int Base_Widget_AppCompat_EditText=0x7f090019;
public static final int Base_Widget_AppCompat_ImageButton=0x7f090064;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900a8;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900a9;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900aa;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090065;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090066;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090067;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090068;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090069;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09006a;
public static final int Base_Widget_AppCompat_ListView=0x7f09006b;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f09006c;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f09006d;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f09006e;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f09006f;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900ab;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f09000f;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f090010;
public static final int Base_Widget_AppCompat_RatingBar=0x7f090070;
public static final int Base_Widget_AppCompat_SearchView=0x7f0900ac;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900ad;
public static final int Base_Widget_AppCompat_SeekBar=0x7f090071;
public static final int Base_Widget_AppCompat_Spinner=0x7f090072;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f090004;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090073;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0900ae;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090074;
public static final int Base_Widget_Design_TabLayout=0x7f0900af;
public static final int Platform_AppCompat=0x7f090011;
public static final int Platform_AppCompat_Light=0x7f090012;
public static final int Platform_ThemeOverlay_AppCompat=0x7f090075;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090076;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090077;
public static final int Platform_V11_AppCompat=0x7f090013;
public static final int Platform_V11_AppCompat_Light=0x7f090014;
public static final int Platform_V14_AppCompat=0x7f09001b;
public static final int Platform_V14_AppCompat_Light=0x7f09001c;
public static final int Platform_Widget_AppCompat_Spinner=0x7f090015;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090022;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090023;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090024;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090025;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090026;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090027;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090028;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090029;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f09002a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09002b;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09002c;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09002d;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f09002e;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f09002f;
public static final int TextAppearance_AppCompat=0x7f0900b0;
public static final int TextAppearance_AppCompat_Body1=0x7f0900b1;
public static final int TextAppearance_AppCompat_Body2=0x7f0900b2;
public static final int TextAppearance_AppCompat_Button=0x7f0900b3;
public static final int TextAppearance_AppCompat_Caption=0x7f0900b4;
public static final int TextAppearance_AppCompat_Display1=0x7f0900b5;
public static final int TextAppearance_AppCompat_Display2=0x7f0900b6;
public static final int TextAppearance_AppCompat_Display3=0x7f0900b7;
public static final int TextAppearance_AppCompat_Display4=0x7f0900b8;
public static final int TextAppearance_AppCompat_Headline=0x7f0900b9;
public static final int TextAppearance_AppCompat_Inverse=0x7f0900ba;
public static final int TextAppearance_AppCompat_Large=0x7f0900bb;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900bc;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900bd;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900be;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900bf;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900c0;
public static final int TextAppearance_AppCompat_Medium=0x7f0900c1;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900c2;
public static final int TextAppearance_AppCompat_Menu=0x7f0900c3;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900c4;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900c5;
public static final int TextAppearance_AppCompat_Small=0x7f0900c6;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900c7;
public static final int TextAppearance_AppCompat_Subhead=0x7f0900c8;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900c9;
public static final int TextAppearance_AppCompat_Title=0x7f0900ca;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900cb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900cc;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900cd;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900ce;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900cf;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900d0;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900d1;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900d2;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900d3;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900d4;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900d5;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900d6;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900d7;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900d8;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900d9;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900da;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900db;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0900dc;
public static final int TextAppearance_Design_Counter=0x7f0900dd;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0900de;
public static final int TextAppearance_Design_Error=0x7f0900df;
public static final int TextAppearance_Design_Hint=0x7f0900e0;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0900e1;
public static final int TextAppearance_Design_Tab=0x7f0900e2;
public static final int TextAppearance_StatusBar_EventContent=0x7f09001d;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09001e;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09001f;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f090020;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f090021;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900e3;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900e4;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900e5;
public static final int Theme_AppCompat=0x7f0900e6;
public static final int Theme_AppCompat_CompactMenu=0x7f0900e7;
public static final int Theme_AppCompat_Dialog=0x7f0900e8;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0900e9;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900ea;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900eb;
public static final int Theme_AppCompat_Light=0x7f0900ec;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900ed;
public static final int Theme_AppCompat_Light_Dialog=0x7f0900ee;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900ef;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900f0;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900f1;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900f2;
public static final int Theme_AppCompat_NoActionBar=0x7f0900f3;
public static final int Theme_Transparent=0x7f0900f4;
public static final int ThemeOverlay_AppCompat=0x7f0900f5;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0900f6;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0900f7;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900f8;
public static final int ThemeOverlay_AppCompat_Light=0x7f0900f9;
public static final int Widget_AppCompat_ActionBar=0x7f0900fa;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0900fb;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0900fc;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0900fd;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0900fe;
public static final int Widget_AppCompat_ActionButton=0x7f0900ff;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090100;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090101;
public static final int Widget_AppCompat_ActionMode=0x7f090102;
public static final int Widget_AppCompat_ActivityChooserView=0x7f090103;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f090104;
public static final int Widget_AppCompat_Button=0x7f090105;
public static final int Widget_AppCompat_Button_Borderless=0x7f090106;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f090107;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f090108;
public static final int Widget_AppCompat_Button_Colored=0x7f090109;
public static final int Widget_AppCompat_Button_Small=0x7f09010a;
public static final int Widget_AppCompat_ButtonBar=0x7f09010b;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f09010c;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f09010d;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f09010e;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f09010f;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090110;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090111;
public static final int Widget_AppCompat_EditText=0x7f090112;
public static final int Widget_AppCompat_ImageButton=0x7f090113;
public static final int Widget_AppCompat_Light_ActionBar=0x7f090114;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090115;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090116;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f090117;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f090118;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f090119;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09011a;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f09011b;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f09011c;
public static final int Widget_AppCompat_Light_ActionButton=0x7f09011d;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f09011e;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f09011f;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090120;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090121;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090122;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090123;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090124;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090125;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f090126;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090127;
public static final int Widget_AppCompat_Light_SearchView=0x7f090128;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f090129;
public static final int Widget_AppCompat_ListPopupWindow=0x7f09012a;
public static final int Widget_AppCompat_ListView=0x7f09012b;
public static final int Widget_AppCompat_ListView_DropDown=0x7f09012c;
public static final int Widget_AppCompat_ListView_Menu=0x7f09012d;
public static final int Widget_AppCompat_PopupMenu=0x7f09012e;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f09012f;
public static final int Widget_AppCompat_PopupWindow=0x7f090130;
public static final int Widget_AppCompat_ProgressBar=0x7f090131;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090132;
public static final int Widget_AppCompat_RatingBar=0x7f090133;
public static final int Widget_AppCompat_SearchView=0x7f090134;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f090135;
public static final int Widget_AppCompat_SeekBar=0x7f090136;
public static final int Widget_AppCompat_Spinner=0x7f090137;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f090138;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090139;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f09013a;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f09013b;
public static final int Widget_AppCompat_Toolbar=0x7f09013c;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f09013d;
public static final int Widget_Design_AppBarLayout=0x7f09013e;
public static final int Widget_Design_CollapsingToolbar=0x7f09013f;
public static final int Widget_Design_CoordinatorLayout=0x7f090140;
public static final int Widget_Design_FloatingActionButton=0x7f090141;
public static final int Widget_Design_NavigationView=0x7f090142;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f090143;
public static final int Widget_Design_Snackbar=0x7f090144;
public static final int Widget_Design_TabLayout=0x7f090001;
public static final int Widget_Design_TextInputLayout=0x7f090145;
}
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.ThomasHorgaGmailCom.JustMaBitCnx:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.ThomasHorgaGmailCom.JustMaBitCnx:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.ThomasHorgaGmailCom.JustMaBitCnx:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.ThomasHorgaGmailCom.JustMaBitCnx:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.ThomasHorgaGmailCom.JustMaBitCnx:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.ThomasHorgaGmailCom.JustMaBitCnx:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.ThomasHorgaGmailCom.JustMaBitCnx:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.ThomasHorgaGmailCom.JustMaBitCnx:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.ThomasHorgaGmailCom.JustMaBitCnx:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.ThomasHorgaGmailCom.JustMaBitCnx:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.ThomasHorgaGmailCom.JustMaBitCnx:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.ThomasHorgaGmailCom.JustMaBitCnx:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.ThomasHorgaGmailCom.JustMaBitCnx:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.ThomasHorgaGmailCom.JustMaBitCnx:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.ThomasHorgaGmailCom.JustMaBitCnx:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.ThomasHorgaGmailCom.JustMaBitCnx:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.ThomasHorgaGmailCom.JustMaBitCnx:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.ThomasHorgaGmailCom.JustMaBitCnx:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.ThomasHorgaGmailCom.JustMaBitCnx:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.ThomasHorgaGmailCom.JustMaBitCnx:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.ThomasHorgaGmailCom.JustMaBitCnx:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.ThomasHorgaGmailCom.JustMaBitCnx:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.ThomasHorgaGmailCom.JustMaBitCnx:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,
0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,
0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,
0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,
0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,
0x7f01001a, 0x7f01001b, 0x7f0100be
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:elevation
*/
public static final int ActionBar_elevation = 24;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 26;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:popupTheme
*/
public static final int ActionBar_popupTheme = 25;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.ThomasHorgaGmailCom.JustMaBitCnx:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.ThomasHorgaGmailCom.JustMaBitCnx:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.ThomasHorgaGmailCom.JustMaBitCnx:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.ThomasHorgaGmailCom.JustMaBitCnx:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.ThomasHorgaGmailCom.JustMaBitCnx:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_closeItemLayout
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c,
0x7f01000e, 0x7f01001c
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.ThomasHorgaGmailCom.JustMaBitCnx:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01001d, 0x7f01001e
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.ThomasHorgaGmailCom.JustMaBitCnx:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.ThomasHorgaGmailCom.JustMaBitCnx:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.ThomasHorgaGmailCom.JustMaBitCnx:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.ThomasHorgaGmailCom.JustMaBitCnx:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded com.ThomasHorgaGmailCom.JustMaBitCnx:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f01001a, 0x7f010024
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:elevation
*/
public static final int AppBarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expanded
*/
public static final int AppBarLayout_expanded = 2;
/** Attributes that can be used with a AppBarLayout_LayoutParams.
<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_LayoutParams_layout_scrollFlags com.ThomasHorgaGmailCom.JustMaBitCnx:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator com.ThomasHorgaGmailCom.JustMaBitCnx:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_LayoutParams_layout_scrollFlags
@see #AppBarLayout_LayoutParams_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_LayoutParams = {
0x7f010025, 0x7f010026
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_LayoutParams} 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.ThomasHorgaGmailCom.JustMaBitCnx:layout_scrollFlags
*/
public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:layout_scrollInterpolator
*/
public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010027
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f010028
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams.
<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 #CollapsingAppBarLayout_LayoutParams_layout_collapseMode com.ThomasHorgaGmailCom.JustMaBitCnx:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier com.ThomasHorgaGmailCom.JustMaBitCnx:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode
@see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingAppBarLayout_LayoutParams = {
0x7f010029, 0x7f01002a
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} 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.ThomasHorgaGmailCom.JustMaBitCnx:layout_collapseMode
*/
public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} 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.ThomasHorgaGmailCom.JustMaBitCnx:layout_collapseParallaxMultiplier
*/
public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.ThomasHorgaGmailCom.JustMaBitCnx:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.ThomasHorgaGmailCom.JustMaBitCnx:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title com.ThomasHorgaGmailCom.JustMaBitCnx:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.ThomasHorgaGmailCom.JustMaBitCnx:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.ThomasHorgaGmailCom.JustMaBitCnx: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_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010003, 0x7f01002b, 0x7f01002c, 0x7f01002d,
0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031,
0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035,
0x7f010036, 0x7f010037
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 12;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 13;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 10;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.ThomasHorgaGmailCom.JustMaBitCnx:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f010038, 0x7f010039
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.ThomasHorgaGmailCom.JustMaBitCnx:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f01003a, 0x7f01003b
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_LayoutParams.
<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_LayoutParams_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchor com.ThomasHorgaGmailCom.JustMaBitCnx:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity com.ThomasHorgaGmailCom.JustMaBitCnx:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_behavior com.ThomasHorgaGmailCom.JustMaBitCnx:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_keyline com.ThomasHorgaGmailCom.JustMaBitCnx:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_LayoutParams_android_layout_gravity
@see #CoordinatorLayout_LayoutParams_layout_anchor
@see #CoordinatorLayout_LayoutParams_layout_anchorGravity
@see #CoordinatorLayout_LayoutParams_layout_behavior
@see #CoordinatorLayout_LayoutParams_layout_keyline
*/
public static final int[] CoordinatorLayout_LayoutParams = {
0x010100b3, 0x7f01003c, 0x7f01003d, 0x7f01003e,
0x7f01003f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:layout_anchor
*/
public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} 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.ThomasHorgaGmailCom.JustMaBitCnx:layout_anchorGravity
*/
public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} 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.ThomasHorgaGmailCom.JustMaBitCnx:layout_behavior
*/
public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} 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.ThomasHorgaGmailCom.JustMaBitCnx:layout_keyline
*/
public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.ThomasHorgaGmailCom.JustMaBitCnx:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.ThomasHorgaGmailCom.JustMaBitCnx:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.ThomasHorgaGmailCom.JustMaBitCnx:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.ThomasHorgaGmailCom.JustMaBitCnx:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.ThomasHorgaGmailCom.JustMaBitCnx:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.ThomasHorgaGmailCom.JustMaBitCnx:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.ThomasHorgaGmailCom.JustMaBitCnx: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 = {
0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043,
0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint com.ThomasHorgaGmailCom.JustMaBitCnx:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.ThomasHorgaGmailCom.JustMaBitCnx:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth com.ThomasHorgaGmailCom.JustMaBitCnx:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation com.ThomasHorgaGmailCom.JustMaBitCnx:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize com.ThomasHorgaGmailCom.JustMaBitCnx:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.ThomasHorgaGmailCom.JustMaBitCnx:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor com.ThomasHorgaGmailCom.JustMaBitCnx:rippleColor}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_android_background
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
*/
public static final int[] FloatingActionButton = {
0x010100d4, 0x7f01001a, 0x7f010048, 0x7f010049,
0x7f01004a, 0x7f01004b, 0x7f01010e, 0x7f01010f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #FloatingActionButton} array.
@attr name android:background
*/
public static final int FloatingActionButton_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:elevation
*/
public static final int FloatingActionButton_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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>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.ThomasHorgaGmailCom.JustMaBitCnx:fabSize
*/
public static final int FloatingActionButton_fabSize = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 2;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx: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, 0x7f01004c
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.ThomasHorgaGmailCom.JustMaBitCnx:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.ThomasHorgaGmailCom.JustMaBitCnx:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.ThomasHorgaGmailCom.JustMaBitCnx:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f01000b, 0x7f01004d, 0x7f01004e,
0x7f01004f
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.ThomasHorgaGmailCom.JustMaBitCnx:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.ThomasHorgaGmailCom.JustMaBitCnx:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx: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, 0x7f010050, 0x7f010051, 0x7f010052,
0x7f010053
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:preserveIconSpacing}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f010054
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout com.ThomasHorgaGmailCom.JustMaBitCnx:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground com.ThomasHorgaGmailCom.JustMaBitCnx:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint com.ThomasHorgaGmailCom.JustMaBitCnx:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor com.ThomasHorgaGmailCom.JustMaBitCnx:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu com.ThomasHorgaGmailCom.JustMaBitCnx: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, 0x7f01001a,
0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058,
0x7f010059, 0x7f01005a
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:menu
*/
public static final int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor com.ThomasHorgaGmailCom.JustMaBitCnx:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x7f01005b
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 1;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.ThomasHorgaGmailCom.JustMaBitCnx:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f01005c
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager com.ThomasHorgaGmailCom.JustMaBitCnx:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout com.ThomasHorgaGmailCom.JustMaBitCnx:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount com.ThomasHorgaGmailCom.JustMaBitCnx:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd com.ThomasHorgaGmailCom.JustMaBitCnx:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:layoutManager
*/
public static final int RecyclerView_layoutManager = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:spanCount
*/
public static final int RecyclerView_spanCount = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 4;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010061
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Params.
<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_Params_behavior_overlapTop com.ThomasHorgaGmailCom.JustMaBitCnx:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Params_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Params = {
0x7f010062
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Params_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.ThomasHorgaGmailCom.JustMaBitCnx:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.ThomasHorgaGmailCom.JustMaBitCnx:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.ThomasHorgaGmailCom.JustMaBitCnx:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.ThomasHorgaGmailCom.JustMaBitCnx:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.ThomasHorgaGmailCom.JustMaBitCnx:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.ThomasHorgaGmailCom.JustMaBitCnx:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.ThomasHorgaGmailCom.JustMaBitCnx:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.ThomasHorgaGmailCom.JustMaBitCnx:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.ThomasHorgaGmailCom.JustMaBitCnx:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.ThomasHorgaGmailCom.JustMaBitCnx:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.ThomasHorgaGmailCom.JustMaBitCnx:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.ThomasHorgaGmailCom.JustMaBitCnx:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.ThomasHorgaGmailCom.JustMaBitCnx: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,
0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066,
0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a,
0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e,
0x7f01006f
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation com.ThomasHorgaGmailCom.JustMaBitCnx:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.ThomasHorgaGmailCom.JustMaBitCnx:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f01001a, 0x7f010070
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_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.ThomasHorgaGmailCom.JustMaBitCnx:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x01010176, 0x0101017b, 0x01010262, 0x7f01001b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:popupTheme
*/
public static final int Spinner_popupTheme = 3;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText com.ThomasHorgaGmailCom.JustMaBitCnx:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.ThomasHorgaGmailCom.JustMaBitCnx:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.ThomasHorgaGmailCom.JustMaBitCnx:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.ThomasHorgaGmailCom.JustMaBitCnx:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.ThomasHorgaGmailCom.JustMaBitCnx:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.ThomasHorgaGmailCom.JustMaBitCnx:track}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_track
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f010071,
0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075,
0x7f010076, 0x7f010077
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:showText
*/
public static final int SwitchCompat_showText = 9;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:splitTrack
*/
public static final int SwitchCompat_splitTrack = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:switchPadding
*/
public static final int SwitchCompat_switchPadding = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:track
*/
public static final int SwitchCompat_track = 3;
/** 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.ThomasHorgaGmailCom.JustMaBitCnx:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart com.ThomasHorgaGmailCom.JustMaBitCnx:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity com.ThomasHorgaGmailCom.JustMaBitCnx:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor com.ThomasHorgaGmailCom.JustMaBitCnx:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight com.ThomasHorgaGmailCom.JustMaBitCnx:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth com.ThomasHorgaGmailCom.JustMaBitCnx:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth com.ThomasHorgaGmailCom.JustMaBitCnx:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode com.ThomasHorgaGmailCom.JustMaBitCnx:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding com.ThomasHorgaGmailCom.JustMaBitCnx:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom com.ThomasHorgaGmailCom.JustMaBitCnx:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd com.ThomasHorgaGmailCom.JustMaBitCnx:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart com.ThomasHorgaGmailCom.JustMaBitCnx:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop com.ThomasHorgaGmailCom.JustMaBitCnx:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor com.ThomasHorgaGmailCom.JustMaBitCnx:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor com.ThomasHorgaGmailCom.JustMaBitCnx: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 = {
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx: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,
0x7f010027
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength com.ThomasHorgaGmailCom.JustMaBitCnx:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled com.ThomasHorgaGmailCom.JustMaBitCnx:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.ThomasHorgaGmailCom.JustMaBitCnx:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:hintTextAppearance}</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_hintTextAppearance
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f010088, 0x7f010089,
0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d,
0x7f01008e, 0x7f01008f
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 9;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/** Attributes that can be used with a Theme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Theme_actionBarDivider com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarItemBackground com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarPopupTheme com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarSize com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarSplitStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTabBarStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTabStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTabTextStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTheme com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarWidgetTheme com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionDropDownStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionMenuTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionMenuTextColor com.ThomasHorgaGmailCom.JustMaBitCnx:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeBackground com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCloseDrawable com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCopyDrawable com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCutDrawable com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeFindDrawable com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModePasteDrawable com.ThomasHorgaGmailCom.JustMaBitCnx:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModePopupWindowStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeShareDrawable com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeSplitBackground com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionOverflowButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionOverflowMenuStyle com.ThomasHorgaGmailCom.JustMaBitCnx:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_activityChooserViewStyle com.ThomasHorgaGmailCom.JustMaBitCnx:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogButtonGroupStyle com.ThomasHorgaGmailCom.JustMaBitCnx:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogCenterButtons com.ThomasHorgaGmailCom.JustMaBitCnx:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogStyle com.ThomasHorgaGmailCom.JustMaBitCnx:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogTheme com.ThomasHorgaGmailCom.JustMaBitCnx:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_autoCompleteTextViewStyle com.ThomasHorgaGmailCom.JustMaBitCnx:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_borderlessButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarStyle com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonStyleSmall com.ThomasHorgaGmailCom.JustMaBitCnx:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_checkboxStyle com.ThomasHorgaGmailCom.JustMaBitCnx:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_checkedTextViewStyle com.ThomasHorgaGmailCom.JustMaBitCnx:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorAccent com.ThomasHorgaGmailCom.JustMaBitCnx:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorButtonNormal com.ThomasHorgaGmailCom.JustMaBitCnx:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorControlActivated com.ThomasHorgaGmailCom.JustMaBitCnx:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorControlHighlight com.ThomasHorgaGmailCom.JustMaBitCnx:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorControlNormal com.ThomasHorgaGmailCom.JustMaBitCnx:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorPrimary com.ThomasHorgaGmailCom.JustMaBitCnx:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorPrimaryDark com.ThomasHorgaGmailCom.JustMaBitCnx:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorSwitchThumbNormal com.ThomasHorgaGmailCom.JustMaBitCnx:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_controlBackground com.ThomasHorgaGmailCom.JustMaBitCnx:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dialogPreferredPadding com.ThomasHorgaGmailCom.JustMaBitCnx:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dialogTheme com.ThomasHorgaGmailCom.JustMaBitCnx:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dividerHorizontal com.ThomasHorgaGmailCom.JustMaBitCnx:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dividerVertical com.ThomasHorgaGmailCom.JustMaBitCnx:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dropDownListViewStyle com.ThomasHorgaGmailCom.JustMaBitCnx:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.ThomasHorgaGmailCom.JustMaBitCnx:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_editTextBackground com.ThomasHorgaGmailCom.JustMaBitCnx:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_editTextColor com.ThomasHorgaGmailCom.JustMaBitCnx:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_editTextStyle com.ThomasHorgaGmailCom.JustMaBitCnx:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_homeAsUpIndicator com.ThomasHorgaGmailCom.JustMaBitCnx:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_imageButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.ThomasHorgaGmailCom.JustMaBitCnx:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listDividerAlertDialog com.ThomasHorgaGmailCom.JustMaBitCnx:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPopupWindowStyle com.ThomasHorgaGmailCom.JustMaBitCnx:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeight com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_panelBackground com.ThomasHorgaGmailCom.JustMaBitCnx:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_panelMenuListTheme com.ThomasHorgaGmailCom.JustMaBitCnx:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_panelMenuListWidth com.ThomasHorgaGmailCom.JustMaBitCnx:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_popupMenuStyle com.ThomasHorgaGmailCom.JustMaBitCnx:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_popupWindowStyle com.ThomasHorgaGmailCom.JustMaBitCnx:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_radioButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_ratingBarStyle com.ThomasHorgaGmailCom.JustMaBitCnx:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_searchViewStyle com.ThomasHorgaGmailCom.JustMaBitCnx:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_seekBarStyle com.ThomasHorgaGmailCom.JustMaBitCnx:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_selectableItemBackground com.ThomasHorgaGmailCom.JustMaBitCnx:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.ThomasHorgaGmailCom.JustMaBitCnx:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.ThomasHorgaGmailCom.JustMaBitCnx:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_spinnerStyle com.ThomasHorgaGmailCom.JustMaBitCnx:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_switchStyle com.ThomasHorgaGmailCom.JustMaBitCnx:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceListItem com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceListItemSmall com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textColorAlertDialogListItem com.ThomasHorgaGmailCom.JustMaBitCnx:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textColorSearchUrl com.ThomasHorgaGmailCom.JustMaBitCnx:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.ThomasHorgaGmailCom.JustMaBitCnx:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_toolbarStyle com.ThomasHorgaGmailCom.JustMaBitCnx:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowActionBar com.ThomasHorgaGmailCom.JustMaBitCnx:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowActionBarOverlay com.ThomasHorgaGmailCom.JustMaBitCnx:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowActionModeOverlay com.ThomasHorgaGmailCom.JustMaBitCnx:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowFixedHeightMajor com.ThomasHorgaGmailCom.JustMaBitCnx:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowFixedHeightMinor com.ThomasHorgaGmailCom.JustMaBitCnx:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowFixedWidthMajor com.ThomasHorgaGmailCom.JustMaBitCnx:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowFixedWidthMinor com.ThomasHorgaGmailCom.JustMaBitCnx:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowMinWidthMajor com.ThomasHorgaGmailCom.JustMaBitCnx:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowMinWidthMinor com.ThomasHorgaGmailCom.JustMaBitCnx:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowNoTitle com.ThomasHorgaGmailCom.JustMaBitCnx:windowNoTitle}</code></td><td></td></tr>
</table>
@see #Theme_actionBarDivider
@see #Theme_actionBarItemBackground
@see #Theme_actionBarPopupTheme
@see #Theme_actionBarSize
@see #Theme_actionBarSplitStyle
@see #Theme_actionBarStyle
@see #Theme_actionBarTabBarStyle
@see #Theme_actionBarTabStyle
@see #Theme_actionBarTabTextStyle
@see #Theme_actionBarTheme
@see #Theme_actionBarWidgetTheme
@see #Theme_actionButtonStyle
@see #Theme_actionDropDownStyle
@see #Theme_actionMenuTextAppearance
@see #Theme_actionMenuTextColor
@see #Theme_actionModeBackground
@see #Theme_actionModeCloseButtonStyle
@see #Theme_actionModeCloseDrawable
@see #Theme_actionModeCopyDrawable
@see #Theme_actionModeCutDrawable
@see #Theme_actionModeFindDrawable
@see #Theme_actionModePasteDrawable
@see #Theme_actionModePopupWindowStyle
@see #Theme_actionModeSelectAllDrawable
@see #Theme_actionModeShareDrawable
@see #Theme_actionModeSplitBackground
@see #Theme_actionModeStyle
@see #Theme_actionModeWebSearchDrawable
@see #Theme_actionOverflowButtonStyle
@see #Theme_actionOverflowMenuStyle
@see #Theme_activityChooserViewStyle
@see #Theme_alertDialogButtonGroupStyle
@see #Theme_alertDialogCenterButtons
@see #Theme_alertDialogStyle
@see #Theme_alertDialogTheme
@see #Theme_android_windowAnimationStyle
@see #Theme_android_windowIsFloating
@see #Theme_autoCompleteTextViewStyle
@see #Theme_borderlessButtonStyle
@see #Theme_buttonBarButtonStyle
@see #Theme_buttonBarNegativeButtonStyle
@see #Theme_buttonBarNeutralButtonStyle
@see #Theme_buttonBarPositiveButtonStyle
@see #Theme_buttonBarStyle
@see #Theme_buttonStyle
@see #Theme_buttonStyleSmall
@see #Theme_checkboxStyle
@see #Theme_checkedTextViewStyle
@see #Theme_colorAccent
@see #Theme_colorButtonNormal
@see #Theme_colorControlActivated
@see #Theme_colorControlHighlight
@see #Theme_colorControlNormal
@see #Theme_colorPrimary
@see #Theme_colorPrimaryDark
@see #Theme_colorSwitchThumbNormal
@see #Theme_controlBackground
@see #Theme_dialogPreferredPadding
@see #Theme_dialogTheme
@see #Theme_dividerHorizontal
@see #Theme_dividerVertical
@see #Theme_dropDownListViewStyle
@see #Theme_dropdownListPreferredItemHeight
@see #Theme_editTextBackground
@see #Theme_editTextColor
@see #Theme_editTextStyle
@see #Theme_homeAsUpIndicator
@see #Theme_imageButtonStyle
@see #Theme_listChoiceBackgroundIndicator
@see #Theme_listDividerAlertDialog
@see #Theme_listPopupWindowStyle
@see #Theme_listPreferredItemHeight
@see #Theme_listPreferredItemHeightLarge
@see #Theme_listPreferredItemHeightSmall
@see #Theme_listPreferredItemPaddingLeft
@see #Theme_listPreferredItemPaddingRight
@see #Theme_panelBackground
@see #Theme_panelMenuListTheme
@see #Theme_panelMenuListWidth
@see #Theme_popupMenuStyle
@see #Theme_popupWindowStyle
@see #Theme_radioButtonStyle
@see #Theme_ratingBarStyle
@see #Theme_searchViewStyle
@see #Theme_seekBarStyle
@see #Theme_selectableItemBackground
@see #Theme_selectableItemBackgroundBorderless
@see #Theme_spinnerDropDownItemStyle
@see #Theme_spinnerStyle
@see #Theme_switchStyle
@see #Theme_textAppearanceLargePopupMenu
@see #Theme_textAppearanceListItem
@see #Theme_textAppearanceListItemSmall
@see #Theme_textAppearanceSearchResultSubtitle
@see #Theme_textAppearanceSearchResultTitle
@see #Theme_textAppearanceSmallPopupMenu
@see #Theme_textColorAlertDialogListItem
@see #Theme_textColorSearchUrl
@see #Theme_toolbarNavigationButtonStyle
@see #Theme_toolbarStyle
@see #Theme_windowActionBar
@see #Theme_windowActionBarOverlay
@see #Theme_windowActionModeOverlay
@see #Theme_windowFixedHeightMajor
@see #Theme_windowFixedHeightMinor
@see #Theme_windowFixedWidthMajor
@see #Theme_windowFixedWidthMinor
@see #Theme_windowMinWidthMajor
@see #Theme_windowMinWidthMinor
@see #Theme_windowNoTitle
*/
public static final int[] Theme = {
0x01010057, 0x010100ae, 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, 0x7f0100f8, 0x7f0100f9,
0x7f0100fa, 0x7f0100fb
};
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarDivider}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarDivider
*/
public static final int Theme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarItemBackground
*/
public static final int Theme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarPopupTheme
*/
public static final int Theme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarSize}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarSize
*/
public static final int Theme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarSplitStyle
*/
public static final int Theme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarStyle
*/
public static final int Theme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarTabBarStyle
*/
public static final int Theme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarTabStyle
*/
public static final int Theme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarTabTextStyle
*/
public static final int Theme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarTheme
*/
public static final int Theme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionBarWidgetTheme
*/
public static final int Theme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionButtonStyle
*/
public static final int Theme_actionButtonStyle = 49;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionDropDownStyle
*/
public static final int Theme_actionDropDownStyle = 45;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionMenuTextAppearance
*/
public static final int Theme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionMenuTextColor
*/
public static final int Theme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeBackground
*/
public static final int Theme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeCloseButtonStyle
*/
public static final int Theme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeCloseDrawable
*/
public static final int Theme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeCopyDrawable
*/
public static final int Theme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeCutDrawable
*/
public static final int Theme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeFindDrawable
*/
public static final int Theme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModePasteDrawable
*/
public static final int Theme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModePopupWindowStyle
*/
public static final int Theme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeSelectAllDrawable
*/
public static final int Theme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeShareDrawable
*/
public static final int Theme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeSplitBackground
*/
public static final int Theme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeStyle
*/
public static final int Theme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionModeWebSearchDrawable
*/
public static final int Theme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionOverflowButtonStyle
*/
public static final int Theme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:actionOverflowMenuStyle
*/
public static final int Theme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:activityChooserViewStyle
*/
public static final int Theme_activityChooserViewStyle = 57;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:alertDialogButtonGroupStyle
*/
public static final int Theme_alertDialogButtonGroupStyle = 92;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:alertDialogCenterButtons
*/
public static final int Theme_alertDialogCenterButtons = 93;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:alertDialogStyle
*/
public static final int Theme_alertDialogStyle = 91;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:alertDialogTheme
*/
public static final int Theme_alertDialogTheme = 94;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #Theme} array.
@attr name android:windowAnimationStyle
*/
public static final int Theme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #Theme} array.
@attr name android:windowIsFloating
*/
public static final int Theme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:autoCompleteTextViewStyle
*/
public static final int Theme_autoCompleteTextViewStyle = 99;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:borderlessButtonStyle
*/
public static final int Theme_borderlessButtonStyle = 54;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarButtonStyle
*/
public static final int Theme_buttonBarButtonStyle = 51;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarNegativeButtonStyle
*/
public static final int Theme_buttonBarNegativeButtonStyle = 97;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarNeutralButtonStyle
*/
public static final int Theme_buttonBarNeutralButtonStyle = 98;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarPositiveButtonStyle
*/
public static final int Theme_buttonBarPositiveButtonStyle = 96;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:buttonBarStyle
*/
public static final int Theme_buttonBarStyle = 50;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#buttonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:buttonStyle
*/
public static final int Theme_buttonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:buttonStyleSmall
*/
public static final int Theme_buttonStyleSmall = 101;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#checkboxStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:checkboxStyle
*/
public static final int Theme_checkboxStyle = 102;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:checkedTextViewStyle
*/
public static final int Theme_checkedTextViewStyle = 103;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#colorAccent}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:colorAccent
*/
public static final int Theme_colorAccent = 84;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:colorButtonNormal
*/
public static final int Theme_colorButtonNormal = 88;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#colorControlActivated}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:colorControlActivated
*/
public static final int Theme_colorControlActivated = 86;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:colorControlHighlight
*/
public static final int Theme_colorControlHighlight = 87;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#colorControlNormal}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:colorControlNormal
*/
public static final int Theme_colorControlNormal = 85;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#colorPrimary}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:colorPrimary
*/
public static final int Theme_colorPrimary = 82;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:colorPrimaryDark
*/
public static final int Theme_colorPrimaryDark = 83;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:colorSwitchThumbNormal
*/
public static final int Theme_colorSwitchThumbNormal = 89;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#controlBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:controlBackground
*/
public static final int Theme_controlBackground = 90;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:dialogPreferredPadding
*/
public static final int Theme_dialogPreferredPadding = 43;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#dialogTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:dialogTheme
*/
public static final int Theme_dialogTheme = 42;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:dividerHorizontal
*/
public static final int Theme_dividerHorizontal = 56;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#dividerVertical}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:dividerVertical
*/
public static final int Theme_dividerVertical = 55;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:dropDownListViewStyle
*/
public static final int Theme_dropDownListViewStyle = 74;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:dropdownListPreferredItemHeight
*/
public static final int Theme_dropdownListPreferredItemHeight = 46;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#editTextBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:editTextBackground
*/
public static final int Theme_editTextBackground = 63;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#editTextColor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:editTextColor
*/
public static final int Theme_editTextColor = 62;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#editTextStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:editTextStyle
*/
public static final int Theme_editTextStyle = 104;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:homeAsUpIndicator
*/
public static final int Theme_homeAsUpIndicator = 48;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:imageButtonStyle
*/
public static final int Theme_imageButtonStyle = 64;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:listChoiceBackgroundIndicator
*/
public static final int Theme_listChoiceBackgroundIndicator = 81;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:listDividerAlertDialog
*/
public static final int Theme_listDividerAlertDialog = 44;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:listPopupWindowStyle
*/
public static final int Theme_listPopupWindowStyle = 75;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemHeight
*/
public static final int Theme_listPreferredItemHeight = 69;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemHeightLarge
*/
public static final int Theme_listPreferredItemHeightLarge = 71;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemHeightSmall
*/
public static final int Theme_listPreferredItemHeightSmall = 70;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemPaddingLeft
*/
public static final int Theme_listPreferredItemPaddingLeft = 72;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:listPreferredItemPaddingRight
*/
public static final int Theme_listPreferredItemPaddingRight = 73;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#panelBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:panelBackground
*/
public static final int Theme_panelBackground = 78;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:panelMenuListTheme
*/
public static final int Theme_panelMenuListTheme = 80;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:panelMenuListWidth
*/
public static final int Theme_panelMenuListWidth = 79;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:popupMenuStyle
*/
public static final int Theme_popupMenuStyle = 60;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:popupWindowStyle
*/
public static final int Theme_popupWindowStyle = 61;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:radioButtonStyle
*/
public static final int Theme_radioButtonStyle = 105;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:ratingBarStyle
*/
public static final int Theme_ratingBarStyle = 106;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#searchViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:searchViewStyle
*/
public static final int Theme_searchViewStyle = 68;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#seekBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:seekBarStyle
*/
public static final int Theme_seekBarStyle = 107;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:selectableItemBackground
*/
public static final int Theme_selectableItemBackground = 52;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:selectableItemBackgroundBorderless
*/
public static final int Theme_selectableItemBackgroundBorderless = 53;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:spinnerDropDownItemStyle
*/
public static final int Theme_spinnerDropDownItemStyle = 47;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#spinnerStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:spinnerStyle
*/
public static final int Theme_spinnerStyle = 108;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#switchStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:switchStyle
*/
public static final int Theme_switchStyle = 109;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceLargePopupMenu
*/
public static final int Theme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceListItem
*/
public static final int Theme_textAppearanceListItem = 76;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceListItemSmall
*/
public static final int Theme_textAppearanceListItemSmall = 77;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceSearchResultSubtitle
*/
public static final int Theme_textAppearanceSearchResultSubtitle = 66;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceSearchResultTitle
*/
public static final int Theme_textAppearanceSearchResultTitle = 65;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:textAppearanceSmallPopupMenu
*/
public static final int Theme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #Theme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:textColorAlertDialogListItem
*/
public static final int Theme_textColorAlertDialogListItem = 95;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #Theme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:textColorSearchUrl
*/
public static final int Theme_textColorSearchUrl = 67;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:toolbarNavigationButtonStyle
*/
public static final int Theme_toolbarNavigationButtonStyle = 59;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#toolbarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:toolbarStyle
*/
public static final int Theme_toolbarStyle = 58;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowActionBar}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowActionBar
*/
public static final int Theme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowActionBarOverlay
*/
public static final int Theme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowActionModeOverlay
*/
public static final int Theme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowFixedHeightMajor
*/
public static final int Theme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowFixedHeightMinor
*/
public static final int Theme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowFixedWidthMajor
*/
public static final int Theme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowFixedWidthMinor
*/
public static final int Theme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowMinWidthMajor
*/
public static final int Theme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowMinWidthMinor
*/
public static final int Theme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.R.attr#windowNoTitle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.ThomasHorgaGmailCom.JustMaBitCnx:windowNoTitle
*/
public static final int Theme_windowNoTitle = 3;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.ThomasHorgaGmailCom.JustMaBitCnx:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.ThomasHorgaGmailCom.JustMaBitCnx:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.ThomasHorgaGmailCom.JustMaBitCnx:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.ThomasHorgaGmailCom.JustMaBitCnx:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.ThomasHorgaGmailCom.JustMaBitCnx:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.ThomasHorgaGmailCom.JustMaBitCnx:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.ThomasHorgaGmailCom.JustMaBitCnx:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.ThomasHorgaGmailCom.JustMaBitCnx:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.ThomasHorgaGmailCom.JustMaBitCnx:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.ThomasHorgaGmailCom.JustMaBitCnx:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.ThomasHorgaGmailCom.JustMaBitCnx:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.ThomasHorgaGmailCom.JustMaBitCnx:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.ThomasHorgaGmailCom.JustMaBitCnx:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.ThomasHorgaGmailCom.JustMaBitCnx:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.ThomasHorgaGmailCom.JustMaBitCnx:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.ThomasHorgaGmailCom.JustMaBitCnx:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.ThomasHorgaGmailCom.JustMaBitCnx:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.ThomasHorgaGmailCom.JustMaBitCnx:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f010003, 0x7f010006,
0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001b, 0x7f0100fc, 0x7f0100fd,
0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101,
0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 19;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:collapseIcon
*/
public static final int Toolbar_collapseIcon = 18;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:logoDescription
*/
public static final int Toolbar_logoDescription = 22;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 17;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 21;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:navigationIcon
*/
public static final int Toolbar_navigationIcon = 20;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:popupTheme
*/
public static final int Toolbar_popupTheme = 9;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 11;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 24;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 16;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 14;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 13;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 15;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:titleMargins
*/
public static final int Toolbar_titleMargins = 12;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 10;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:titleTextColor
*/
public static final int Toolbar_titleTextColor = 23;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd com.ThomasHorgaGmailCom.JustMaBitCnx:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.ThomasHorgaGmailCom.JustMaBitCnx:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.ThomasHorgaGmailCom.JustMaBitCnx: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, 0x7f01010b, 0x7f01010c,
0x7f01010d
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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.ThomasHorgaGmailCom.JustMaBitCnx:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.ThomasHorgaGmailCom.JustMaBitCnx:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f01010e, 0x7f01010f
};
/**
<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.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.ThomasHorgaGmailCom.JustMaBitCnx.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.ThomasHorgaGmailCom.JustMaBitCnx: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;
};
}
| [
"Sean@v1021-wn-62-64.campus-dynamic.uwaterloo.ca"
] | Sean@v1021-wn-62-64.campus-dynamic.uwaterloo.ca |
13b3dff106a253509f7b6ad449edbe9de7287012 | f91754ad66bb8baaaa4d99c361057b1cb8161481 | /IndProject1/src/com/vmware/vim25/mo/samples/VMPowerStateAlarm.java | 8096e08e50c6f6097dd687bce2576017541a6364 | [] | no_license | KrutiRaghavan/VMPerformance | 01506fb58b2a862b9c8a655f7472cc9669fd5d23 | 97531ca27255ba5eae228f958a5da6823932c220 | refs/heads/master | 2020-12-24T15:58:49.650171 | 2014-04-17T01:17:51 | 2014-04-17T01:17:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,463 | java | /*================================================================================
Copyright (c) 2008 VMware, Inc. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of VMware, Inc. nor the names of its contributors may be used
to endorse or promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
================================================================================*/
package com.vmware.vim25.mo.samples;
import com.vmware.vim25.AlarmAction;
import com.vmware.vim25.AlarmSetting;
import com.vmware.vim25.AlarmSpec;
import com.vmware.vim25.GroupAlarmAction;
import com.vmware.vim25.SendEmailAction;
import com.vmware.vim25.StateAlarmExpression;
import java.net.URL;
import java.rmi.RemoteException;
import com.vmware.vim25.*;
import com.vmware.vim25.mo.*;
import com.vmware.vim25.mo.util.*;
/**
*<pre>
*This is a sample which creates an Alarm to monitor the virtual
*machine's power state
*
*<b>Parameters:</b>
*vmname [required] Name of the virtual machine
*alarm [required] Name of the alarms
*
*</pre>
* @author sjin
*/
public class VMPowerStateAlarm
{
public static void main(String[] args) throws Exception
{
ServiceInstance si = new ServiceInstance(new URL(args[0]), args[1], args[2], true);
AlarmManager am = si.getAlarmManager();
Folder rootFolder = si.getRootFolder();
VirtualMachine vm = (VirtualMachine) new InventoryNavigator(rootFolder).searchManagedEntity("VirtualMachine", args[3]);
if(vm!=null && am!=null)
{
AlarmSpec spec = new AlarmSpec();
StateAlarmExpression expression = createStateAlarmExpression();
AlarmAction emailAction = createAlarmTriggerAction(createEmailAction());
AlarmAction methodAction = createAlarmTriggerAction(createPowerOnAction());
GroupAlarmAction gaa = new GroupAlarmAction();
// spec.setAction(emailAction);
gaa.setAction(new AlarmAction[]{emailAction, methodAction});
spec.setAction(gaa);
spec.setExpression(expression);
spec.setName("ParulVmPowerStateAlarm2");
spec.setDescription("Monitor VM state and send email " +
"and power it on if VM powers off");
spec.setEnabled(true);
AlarmSetting as = new AlarmSetting();
as.setReportingFrequency(0); //as often as possible
as.setToleranceRange(0);
spec.setSetting(as);
try
{
am.createAlarm(vm, spec);
System.out.println("Successfully created Alarm: " );
}
catch(InvalidName in)
{
System.out.println("Alarm name is empty or too long");
}
catch(DuplicateName dn)
{
System.out.println("Alarm with the name already exists");
}
catch(RemoteException re)
{
re.printStackTrace();
}
}
else
{
System.out.println("Either VM is not found or Alarm Manager is not available on this server.");
}
si.getServerConnection().logout();
}
static StateAlarmExpression createStateAlarmExpression()
{
StateAlarmExpression sae = new StateAlarmExpression();
sae.setOperator(StateAlarmOperator.isEqual);
sae.setRed("poweredOff");
sae.setYellow(null);
sae.setStatePath("runtime.powerState");
sae.setType("VirtualMachine");
return sae;
}
static MethodAction createPowerOnAction()
{
MethodAction action = new MethodAction();
action.setName("PowerOnVM_Task");
MethodActionArgument argument = new MethodActionArgument();
argument.setValue(null);
action.setArgument(new MethodActionArgument[] { argument });
return action;
}
static SendEmailAction createEmailAction()
{
SendEmailAction action = new SendEmailAction();
action.setToList("arckruti88@gmail.com");
action.setCcList("arckruti88@gmail.com");
action.setSubject("Alarm - {testAlarm} on {testTarget}\n");
action.setBody("Description:{switched off}\n"
+ "TriggeringSummary:{triggeringSummary}\n"
+ "newStatus:{newStatus}\n"
+ "oldStatus:{oldStatus}\n"
+ "target:{target}");
return action;
}
static AlarmTriggeringAction createAlarmTriggerAction(Action action) throws Exception
{
AlarmTriggeringAction alarmAction = new AlarmTriggeringAction();
alarmAction.setYellow2red(true);
alarmAction.setAction(action);
return alarmAction;
}
static AlarmSpec createAlarmSpec(String alarmName, AlarmAction action, AlarmExpression expression) throws Exception
{
AlarmSpec spec = new AlarmSpec();
spec.setAction(action);
spec.setExpression(expression);
spec.setName(alarmName);
spec.setDescription("Monitor VM state and send email if VM power's off");
spec.setEnabled(true);
return spec;
}
private static OptionSpec[] constructOptions()
{
OptionSpec [] useroptions = new OptionSpec[2];
useroptions[0] = new OptionSpec("vmname", "String", 1, "Name of the virtual machine", null);
useroptions[1] = new OptionSpec("alarm","String",1, "Name of the alarm", null);
return useroptions;
}
}
| [
"arckruti88@gmail.com"
] | arckruti88@gmail.com |
8fbce04eb1e253034167268601eb1bbdf3f46f1a | f6dc1f84190221e1cfd470fdb7037d0be39ee3c9 | /src/main/java/cer_ch2/ArrayListEx.java | b4efcbc067af22c7f53a0dba12f96835c36ec4a2 | [] | no_license | iskander1242/tij | 668b51e18139c32a35f9a4ab65b91e1bd12ca987 | e90db724eb5f58cd5bc662e427f484d22347b98e | refs/heads/master | 2023-06-22T04:31:52.326816 | 2023-06-20T12:06:36 | 2023-06-20T12:06:36 | 133,594,965 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,240 | java | package cer_ch2;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Alexander Sokolov
* on 6/28/18.
*/
public class ArrayListEx {
public static void main(String[] args) {
/**
* TODO:creating:
*/
ArrayList arrayList1 = new ArrayList(4);
ArrayList arrayList2 = new ArrayList();
ArrayList arrayList3 = new ArrayList(arrayList2);
ArrayList<String> arrayList4 = new ArrayList<String>();
ArrayList<String> arrayList5 = new ArrayList<>();
List<String> arrayList6 = new ArrayList<>();
/**
*In the meantime, just know that you can store
* an ArrayList in a List reference variable but not vice
versa
*/
//ArrayList<String> arrayList7 = new List(); //todo:do not compile
/**
* add
*/
System.out.println(" add:");
ArrayList<String> arrayList7 = new ArrayList<>();
arrayList7.add("sparrow");
//arrayList7.add(Boolean.TRUE);//todo:COMPILE error
ArrayList<String> arrayList8 = new ArrayList<>();
arrayList8.add(0,"hawk");
arrayList8.add(0,"hawk");
arrayList8.add(0,"cardinal");
arrayList8.add(1,"blue joy");
System.out.println(arrayList8.toString());
/**
* remove
*/
System.out.println(" remove:");
System.out.println(arrayList8.toString());
System.out.println(arrayList8.remove("hawk"));//remove only one match
System.out.println(arrayList8.toString());
System.out.println(arrayList8.remove("falcon"));
System.out.println(arrayList8.toString());
System.out.println(arrayList8.remove(0));
System.out.println(arrayList8.toString());
System.out.println(arrayList8.removeIf(c -> c.equalsIgnoreCase("hawk")));
System.out.println(arrayList8.toString());
/**
* todo:set
* The set() method changes one of the elements of the ArrayList without changing the size.
*/
System.out.println(" set:");
System.out.println(arrayList8.size());
System.out.println(arrayList8.set(0,"falcon"));
System.out.println(arrayList8.size());
//System.out.println(arrayList8.set(1,"falcon"));// java.lang.IndexOutOfBoundsException:
/**
* todo:isEmpty and size:
*/
System.out.println("isEmpty() and size:");
ArrayList<String> birds = new ArrayList<>();
System.out.println(birds.size());
System.out.println(birds.isEmpty());
birds.add("hawk");
birds.add("hawk");
System.out.println(birds.size());
System.out.println(birds.isEmpty());
/**
* todo: clear()
*/
System.out.println(" clear:");
birds.clear();
System.out.println(birds.size());
System.out.println(birds.isEmpty());
/**
* todo:contains()
*/
System.out.println(" contains:");
System.out.println(birds.contains("falcon"));
birds.add("hawk");
birds.add("falcon");
System.out.println(birds);
System.out.println(birds.contains("falcon"));
}
}
| [
"iskander1240@gmail.com"
] | iskander1240@gmail.com |
58b2c79e8fd51d25af7aa339e451be7dfe233bcf | 1516ee2290eb55213976e0623aff733ca1ac018d | /app/build/generated/source/buildConfig/androidTest/debug/com/fuady/ssa_app_redo1/test/BuildConfig.java | 3f3735c98e40584311dd71deaa39cca9e15c40e6 | [] | no_license | SSAVasquez/SSA-Student-App-Android | 7ad49fd037efa84363bbb63990d20b5b487f4f79 | 9e72be5d56bc1cf8b4ec91c5e26fed09f65279fe | refs/heads/master | 2021-05-12T16:20:58.334482 | 2018-01-09T16:25:22 | 2018-01-09T16:27:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 465 | java | /**
* Automatically generated file. DO NOT MODIFY
*/
package com.fuady.ssa_app_redo1.test;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String APPLICATION_ID = "com.fuady.ssa_app_redo1.test";
public static final String BUILD_TYPE = "debug";
public static final String FLAVOR = "";
public static final int VERSION_CODE = 22;
public static final String VERSION_NAME = "12.6";
}
| [
"fuadmyoussef@gmail.com"
] | fuadmyoussef@gmail.com |
69f260ee6988325631b172d648664ae5bc8a2cc6 | ae2b52d37621a4df56ff2581a7beddcf19de864c | /SQLite_Practice/app/src/main/java/com/example/sqlite_practice/DTO/Student_DTO.java | 9313fb4b4be8cf4c7d947e0bcf15a563adc0bade | [] | no_license | bezitok/Android-Project | ca36f39f1b455fd9ef69cb02b51443810a02d9ad | 6760c4a814db96c7e9af0d5d57412ce377afc1a6 | refs/heads/master | 2020-05-30T04:58:10.852514 | 2019-09-25T17:15:52 | 2019-09-25T17:15:52 | 175,631,601 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 808 | java | package com.example.sqlite_practice.DTO;
public class Student_DTO {
int ID;
String Name;
String Classroom;
public Student_DTO() {
}
public Student_DTO(int ID, String name, String classroom) {
this.ID = ID;
Name = name;
Classroom = classroom;
}
public Student_DTO(String name, String classroom) {
Name = name;
Classroom = classroom;
}
public int getID() {
return ID;
}
public void setID(int ID) {
this.ID = ID;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public String getClassroom() {
return Classroom;
}
public void setClassroom(String classroom) {
Classroom = classroom;
}
}
| [
"nguyenhaikiller@gmail.com"
] | nguyenhaikiller@gmail.com |
d791b58b1f7b0fd83b0c276f84f8237be9f775ec | 6f28ba66909fa293d9058eb033e1694b4ec97eb0 | /smartenv-statistic/smartenv-statistics-api/src/main/java/com/ai/apac/smartenv/statistics/vo/VehicleDistanceInfoVO.java | 416e0cac36354910f28e5b25ce45b1a1208b8b06 | [] | no_license | fangxunqing/smart-env | 01870c01ceb8141787652585b7bf3738a3498641 | 99665cb17c8f7b96f1f6d29223d26a08b5b05d8a | refs/heads/main | 2023-04-26T17:55:03.072112 | 2021-05-25T03:29:15 | 2021-05-25T03:29:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 529 | java | package com.ai.apac.smartenv.statistics.vo;
import com.ai.apac.smartenv.statistics.entity.RptVehicleStay;
import com.ai.apac.smartenv.statistics.entity.VehicleDistanceInfo;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "VehicleDistanceInfoVO对象", description = "VehicleDistanceInfo视图对象")
public class VehicleDistanceInfoVO extends VehicleDistanceInfo {
private static final long serialVersionUID = 1L;
} | [
"15251810316@163.com"
] | 15251810316@163.com |
68933231f09214a231dd250d488fa1a8122070ce | 0d236401d0ef6e471e8f5a07734ec2e5420bda78 | /src/test/java/com/example/demo/MyBankApplicationTests.java | 80961a25153b9d07829cc15516d8e9e7243a892c | [] | no_license | nasami14/MyBank | 3d68b1bc83876a47f2fbdf4b6bac22cab1a5509d | bdd022904bf65e429a86b973575751207d41774e | refs/heads/master | 2020-04-04T22:38:07.526159 | 2018-11-06T06:34:06 | 2018-11-06T06:34:06 | 156,330,208 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 333 | java | package com.example.demo;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MyBankApplicationTests {
@Test
public void contextLoads() {
}
}
| [
"sulena@online.no"
] | sulena@online.no |
6dbeee5720ffccb3d6c4464d6c585a9c7323e2d7 | 963599f6f1f376ba94cbb504e8b324bcce5de7a3 | /sources/p046io/reactivex/observers/SafeObserver.java | 386ac9b3b8b18b4301898f8d0c1e26bb8e5502eb | [] | no_license | NikiHard/cuddly-pancake | 563718cb73fdc4b7b12c6233d9bf44f381dd6759 | 3a5aa80d25d12da08fd621dc3a15fbd536d0b3d4 | refs/heads/main | 2023-04-09T06:58:04.403056 | 2021-04-20T00:45:08 | 2021-04-20T00:45:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,467 | java | package p046io.reactivex.observers;
import p046io.reactivex.Observer;
import p046io.reactivex.disposables.Disposable;
import p046io.reactivex.exceptions.CompositeException;
import p046io.reactivex.exceptions.Exceptions;
import p046io.reactivex.internal.disposables.DisposableHelper;
import p046io.reactivex.internal.disposables.EmptyDisposable;
import p046io.reactivex.plugins.RxJavaPlugins;
/* renamed from: io.reactivex.observers.SafeObserver */
public final class SafeObserver<T> implements Observer<T>, Disposable {
final Observer<? super T> actual;
boolean done;
/* renamed from: s */
Disposable f6162s;
public SafeObserver(Observer<? super T> observer) {
this.actual = observer;
}
public void onSubscribe(Disposable disposable) {
if (DisposableHelper.validate(this.f6162s, disposable)) {
this.f6162s = disposable;
try {
this.actual.onSubscribe(this);
} catch (Throwable th) {
Exceptions.throwIfFatal(th);
RxJavaPlugins.onError(new CompositeException(th, th));
}
}
}
public void dispose() {
this.f6162s.dispose();
}
public boolean isDisposed() {
return this.f6162s.isDisposed();
}
public void onNext(T t) {
if (!this.done) {
if (this.f6162s == null) {
onNextNoSubscription();
} else if (t == null) {
NullPointerException nullPointerException = new NullPointerException("onNext called with null. Null values are generally not allowed in 2.x operators and sources.");
try {
this.f6162s.dispose();
onError(nullPointerException);
} catch (Throwable th) {
Exceptions.throwIfFatal(th);
onError(new CompositeException(nullPointerException, th));
}
} else {
try {
this.actual.onNext(t);
} catch (Throwable th2) {
Exceptions.throwIfFatal(th2);
onError(new CompositeException(th, th2));
}
}
}
}
/* access modifiers changed from: package-private */
public void onNextNoSubscription() {
this.done = true;
NullPointerException nullPointerException = new NullPointerException("Subscription not set!");
try {
this.actual.onSubscribe(EmptyDisposable.INSTANCE);
try {
this.actual.onError(nullPointerException);
} catch (Throwable th) {
Exceptions.throwIfFatal(th);
RxJavaPlugins.onError(new CompositeException(nullPointerException, th));
}
} catch (Throwable th2) {
Exceptions.throwIfFatal(th2);
RxJavaPlugins.onError(new CompositeException(nullPointerException, th2));
}
}
public void onError(Throwable th) {
if (this.done) {
RxJavaPlugins.onError(th);
return;
}
this.done = true;
if (this.f6162s == null) {
NullPointerException nullPointerException = new NullPointerException("Subscription not set!");
try {
this.actual.onSubscribe(EmptyDisposable.INSTANCE);
try {
this.actual.onError(new CompositeException(th, nullPointerException));
} catch (Throwable th2) {
Exceptions.throwIfFatal(th2);
RxJavaPlugins.onError(new CompositeException(th, nullPointerException, th2));
}
} catch (Throwable th3) {
Exceptions.throwIfFatal(th3);
RxJavaPlugins.onError(new CompositeException(th, nullPointerException, th3));
}
} else {
if (th == null) {
th = new NullPointerException("onError called with null. Null values are generally not allowed in 2.x operators and sources.");
}
try {
this.actual.onError(th);
} catch (Throwable th4) {
Exceptions.throwIfFatal(th4);
RxJavaPlugins.onError(new CompositeException(th, th4));
}
}
}
public void onComplete() {
if (!this.done) {
this.done = true;
if (this.f6162s == null) {
onCompleteNoSubscription();
return;
}
try {
this.actual.onComplete();
} catch (Throwable th) {
Exceptions.throwIfFatal(th);
RxJavaPlugins.onError(th);
}
}
}
/* access modifiers changed from: package-private */
public void onCompleteNoSubscription() {
NullPointerException nullPointerException = new NullPointerException("Subscription not set!");
try {
this.actual.onSubscribe(EmptyDisposable.INSTANCE);
try {
this.actual.onError(nullPointerException);
} catch (Throwable th) {
Exceptions.throwIfFatal(th);
RxJavaPlugins.onError(new CompositeException(nullPointerException, th));
}
} catch (Throwable th2) {
Exceptions.throwIfFatal(th2);
RxJavaPlugins.onError(new CompositeException(nullPointerException, th2));
}
}
}
| [
"a.amirovv@mail.ru"
] | a.amirovv@mail.ru |
ad716b89f7bfc3287c5eaf39f43e973b056ba20c | 2d7104f5e8f00b20bd9b7d09d41b2d3818d60b45 | /src/main/java/com/sample/test/demo/model/Status.java | cee4421df0725b740391f9ba9af9917f7c332878 | [] | no_license | chandana97/SampleTask | 0218d18cda8ce4265ef5ed33114d1eddd6b601e1 | 216d7abcf0da6521bcb6165747f0076cfb9826be | refs/heads/master | 2023-03-13T03:27:07.952361 | 2021-02-26T15:02:01 | 2021-02-26T15:02:01 | 341,230,469 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 118 | java | package com.sample.test.demo.model;
public enum Status {
inprogress,
defined,
completed,
accepted;
}
| [
"lpriya@altimetrik.com"
] | lpriya@altimetrik.com |
98e025c957d0a8a3cbc2e7e85c8dd250da54c3d5 | 33874d398ae0e65875e5ed365af44acf5944bcc3 | /src/main/java/com/isis/util/xero/OrganisationRole.java | 6e2bb1edb2df8ee7dd2ade6d79d80509576dd37b | [] | no_license | yorktips/XeroApiPrivateApp | ea6a5f5db112969b8d54d15cc75037c2679f4ff9 | f754a948fdd5d5b3a338a0f3adbe0c301a45ca37 | refs/heads/master | 2020-05-29T09:15:23.028113 | 2016-11-01T03:42:49 | 2016-11-01T03:42:49 | 69,526,820 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,652 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.09.28 at 10:40:40 PM EDT
//
package com.isis.util.xero;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for organisationRole.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* <simpleType name="organisationRole">
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="FINANCIALADVISER"/>
* <enumeration value="STANDARD"/>
* <enumeration value="INVOICEONLY"/>
* <enumeration value="READONLY"/>
* <enumeration value="UNKNOWN"/>
* <enumeration value="MANAGEDCLIENT"/>
* </restriction>
* </simpleType>
* </pre>
*
*/
@XmlType(name = "organisationRole")
@XmlEnum
public enum OrganisationRole {
/**
* Financial Advisor
*
*/
FINANCIALADVISER,
/**
* Standard
*
*/
STANDARD,
/**
* Invoice Only
*
*/
INVOICEONLY,
/**
* Read Only
*
*/
READONLY,
/**
* Unknown Role
*
*/
UNKNOWN,
/**
* Managed Client Role
*
*/
MANAGEDCLIENT;
public String value() {
return name();
}
public static OrganisationRole fromValue(String v) {
return valueOf(v);
}
}
| [
"york.tips@gmail.com"
] | york.tips@gmail.com |
a736bb8f1f570ee855254d37ac7fc3f3c6e4a0a6 | 854c52f2b3e50255a1484d37591c1f4b55314bae | /src/main/java/com/example/apiclientes/controllers/ClienteController.java | 062271459da2ec7dc4ea036ee4e68c268a0c4e6a | [] | no_license | felipecastro099/api-gestao-clientes | e682d8ec77d5417d49c7f27c7c6a518bb3e4a537 | 814a5e50b8d9759cf1a6d2307164837e1ce8b916 | refs/heads/master | 2023-06-09T00:06:34.220815 | 2021-07-05T12:01:00 | 2021-07-05T12:01:00 | 382,636,464 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 859 | java | package com.example.apiclientes.controllers;
import com.example.apiclientes.entities.Cliente;
import com.example.apiclientes.repositories.ClienteRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping("/clientes")
public class ClienteController {
@Autowired
private ClienteRepository clienteRepository;
@PostMapping
public ResponseEntity<?> store(@RequestBody Cliente cliente) {
return ResponseEntity.status(HttpStatus.CREATED).body(clienteRepository.addClient(cliente));
}
@GetMapping("/{id}")
public ResponseEntity<?> find(@PathVariable Long id) {
return ResponseEntity.ok(clienteRepository.findById(id));
}
}
| [
"felipe.fcastro@mercadolivre.com"
] | felipe.fcastro@mercadolivre.com |
0bc0d6b0432e72a33b8eff01ac5a2fc5240d8da9 | 0054303410d4c86230a8c0e3dcef508c10ee8bbc | /app/src/main/java/com/example/buxiaohui/bxhapp/commute/CommuteBaseState.java | be78bfca85f31b2f33486230f49b0d5e52bfe066 | [] | no_license | Buxiaohui/BXHAPP | 4a78a35e7bbea16b1fd09c56d7560d4f215ff1a4 | f7a0e6cdd1f53db88d78ecececd7e700fea11121 | refs/heads/master | 2021-08-17T19:49:07.682185 | 2020-04-21T02:34:29 | 2020-04-21T02:34:29 | 166,009,875 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,716 | java | package com.example.buxiaohui.bxhapp.commute;
import android.os.Looper;
import android.os.Message;
import bnav.baidu.com.sublibrary.statemachine.IState;
import bnav.baidu.com.sublibrary.statemachine.State;
import bnav.baidu.com.sublog.LogUtil;
public abstract class CommuteBaseState extends State {
protected IStateMachine stateMachine;
protected CommuteBaseState() {
}
public CommuteBaseState(IStateMachine stateMachine) {
this.stateMachine = stateMachine;
}
protected static boolean isMainThread() {
return Looper.getMainLooper() == Looper.myLooper();
}
abstract String getTag();
@Override
public void enter() {
super.enter();
printMethodInfo("enter");
}
@Override
public void exit() {
super.exit();
printMethodInfo("exit");
}
protected void printMethodInfo(String methodName) {
LogUtil.e(getTag(), methodName + ":" + getTag() + ",isMainthread:" + isMainThread());
}
@Override
public boolean processMessage(Message msg) {
int what = msg.what;
LogUtil.e(getTag(), "processMessage " + getTag() + ",msg:" + msg);
IState state = stateMachine.getTargetState(what);
if (state == null) {
return super.processMessage(msg);
} else {
toTargetState(state);
}
return true;
}
protected void toTargetState(Class targetStateClass) {
stateMachine.to(targetStateClass);
}
protected void toTargetState(int msgWhat) {
stateMachine.to(stateMachine.getTargetState(msgWhat));
}
protected void toTargetState(IState targetState) {
stateMachine.to(targetState);
}
}
| [
"buxiaohui@baidu.com"
] | buxiaohui@baidu.com |
945d25e59264760efe27fdde69da0ada1177751c | d4875f849c7b5698cefc7187bc95b8f5e3513ae0 | /hotel/src/main/java/com/infosupport/hotel/HotelController.java | fafed1ea949bbf9201c29c522d7524503a994302 | [
"MIT"
] | permissive | nrg500/stackdriver-demo | e5644dc849cfdb30f560c1d498711dba1e03fd2c | 5da922609c643d9396ae532a267a5c55e81f6cc2 | refs/heads/master | 2022-04-30T23:06:06.782454 | 2019-08-30T10:34:19 | 2019-08-30T10:34:19 | 205,004,057 | 0 | 0 | MIT | 2022-03-31T18:53:54 | 2019-08-28T19:05:52 | Java | UTF-8 | Java | false | false | 1,097 | java | package com.infosupport.hotel;
import io.opencensus.trace.Span;
import io.opencensus.trace.Tracer;
import io.opencensus.trace.Tracing;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HotelController {
private static final Tracer tracer = Tracing.getTracer();
private final Log log = LogFactory.getLog(HotelController.class);
@GetMapping("/room")
public String getRoom() throws InterruptedException {
Span span = SpanUtils.buildSpan(tracer,"HotelController getRoom").startSpan();
int price = (int) (200 + Math.random()*400);
Thread.sleep(price);
if (Math.random() > 0.8) {
log.warn("No rooms available!");
throw new RuntimeException("Failed to find a room");
}
log.info("Room found for: " + price);
span.end();
return "You'll be staying at hotel Transylvania for: " + price + " euros a night.";
}
}
| [
"bdvr@live.nl"
] | bdvr@live.nl |
2306a12b8111a0e8f59f71a316d10c02c2b4102c | 70c652079a6090616388fdbb83420bae028ac7bc | /app/src/main/java/com/example/quizstar/Model/all_rank/All_Ranking.java | bc7338e696f05d78c5ff9a5c603365074ab5fa3c | [] | no_license | kvarun1/QuizStarOne | 7b476d1584144655208a85dbba7883705a4da257 | fdddc45e72424d2abda1a852ef689c309ab27ccf | refs/heads/master | 2022-12-15T15:53:17.053240 | 2020-09-21T04:42:11 | 2020-09-21T04:42:11 | 297,233,671 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,065 | java | package com.example.quizstar.Model.all_rank;
import com.example.quizstar.Model.User;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class All_Ranking {
@SerializedName("won")
@Expose
private String won;
@SerializedName("lost")
@Expose
private String lost;
@SerializedName("ratio")
@Expose
private String ratio;
@SerializedName("max_score")
@Expose
private String maxScore;
@SerializedName("average_score")
@Expose
private String averageScore;
@SerializedName("user")
@Expose
private User user;
@SerializedName("rank")
@Expose
private String rank;
@SerializedName("id")
@Expose
private String id;
@SerializedName("position")
@Expose
private int position;
public String getWon() {
return won;
}
public void setWon(String won) {
this.won = won;
}
public String getLost() {
return lost;
}
public void setLost(String lost) {
this.lost = lost;
}
public String getRatio() {
return ratio;
}
public void setRatio(String ratio) {
this.ratio = ratio;
}
public String getMaxScore() {
return maxScore;
}
public void setMaxScore(String maxScore) {
this.maxScore = maxScore;
}
public String getAverageScore() {
return averageScore;
}
public void setAverageScore(String averageScore) {
this.averageScore = averageScore;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public String getRank() {
return rank;
}
public void setRank(String rank) {
this.rank = rank;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public int getPosition() {
return position;
}
public void setPosition(int position) {
this.position = position;
}
}
| [
"kvarun1@live.com"
] | kvarun1@live.com |
3b73a7078e274c4f510e3d6e5c6cb8d3cb472332 | f50434049d360c753e7b4c578dae05e013cdad6b | /src/main/java/com/jagrosh/giveawaybot/entities/Uptimer.java | 5c097ba0061b6f1d0b8849b613160c15cf7611e3 | [
"Apache-2.0"
] | permissive | Beatso/GiveawayBot | def0b3ac9077e5db5d0e3e52af95bf3288382bb5 | 2651c0442bae2c040864e5ef5fd12abcd0b77734 | refs/heads/master | 2023-01-31T21:55:14.746690 | 2020-12-11T21:27:24 | 2020-12-11T21:27:24 | 320,624,761 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,997 | java | /*
* Copyright 2020 John Grosh (john.a.grosh@gmail.com).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jagrosh.giveawaybot.entities;
import com.jagrosh.giveawaybot.Bot;
import com.jagrosh.giveawaybot.util.FormatUtil;
import java.time.Instant;
import java.time.temporal.ChronoUnit;
import java.util.List;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
import net.dv8tion.jda.api.JDA;
/**
*
* @author John Grosh (john.a.grosh@gmail.com)
*/
public abstract class Uptimer
{
protected final Bot bot;
private final int delay;
private boolean started = false;
private Uptimer(Bot bot, int delay)
{
this.bot = bot;
this.delay = delay;
}
public synchronized void start(ScheduledExecutorService threadpool)
{
if(started)
return;
started = true;
threadpool.scheduleWithFixedDelay(() -> check(), delay, delay, TimeUnit.SECONDS);
}
protected abstract void check();
public static class DatabaseUptimer extends Uptimer
{
private int failures = 0;
public DatabaseUptimer(Bot bot)
{
super(bot, 120);
}
@Override
protected void check()
{
if(!bot.getDatabase().databaseCheck())
{
failures++;
if(failures < 3)
bot.getWebhookLog().send(WebhookLog.Level.ERROR, "Failed a database check (" + failures + ")!");
else
{
bot.getWebhookLog().send(WebhookLog.Level.ERROR, "Failed a database check (" + failures + ")! Restarting...");
System.exit(0);
}
}
else
failures = 0;
}
}
public static class StatusUptimer extends Uptimer
{
private enum BotStatus { LOADING, ONLINE, PARTIAL_OUTAGE, OFFLINE }
private BotStatus status = BotStatus.LOADING;
private Instant lastChange = Instant.now();
private boolean attemptedFix = false;
public StatusUptimer(Bot bot)
{
super(bot, 30);
}
@Override
protected void check()
{
long onlineCount = bot.getShardManager().getShardCache().stream().filter(jda -> jda.getStatus() == JDA.Status.CONNECTED).count();
BotStatus curr = onlineCount == bot.getShardManager().getShardCache().size() ? BotStatus.ONLINE
: status == BotStatus.LOADING ? BotStatus.LOADING
: onlineCount == 0 ? BotStatus.OFFLINE
: BotStatus.PARTIAL_OUTAGE;
if(curr != status) // log if it changed
{
bot.getWebhookLog().send(WebhookLog.Level.INFO, "Status changed from `" + status + "` to `" + curr + "`: "
+ FormatUtil.formatShardStatuses(bot.getShardManager().getShards()));
lastChange = Instant.now();
status = curr;
if(status == BotStatus.ONLINE)
attemptedFix = false; // if we're fully online, reset status of an outage
}
else // if it didn't change, maybe take action
{
if(status == BotStatus.PARTIAL_OUTAGE)
{
int minutes = (int) lastChange.until(Instant.now(), ChronoUnit.MINUTES);
if(minutes > 10 && !attemptedFix)
{
List<Integer> down = bot.getShardManager().getShardCache().stream()
.filter(jda -> jda.getStatus() != JDA.Status.CONNECTED)
.map(jda -> jda.getShardInfo().getShardId())
.collect(Collectors.toList());
bot.getWebhookLog().send(WebhookLog.Level.WARNING, "Attempting to restart some shards: `" + down + "`");
down.forEach(i -> bot.getShardManager().restart(i));
attemptedFix = true;
}
else if(minutes > 30)
{
bot.getWebhookLog().send(WebhookLog.Level.ERROR, "Extended outage, restarting...");
System.exit(0);
}
}
}
}
}
}
| [
"john.a.grosh@gmail.com"
] | john.a.grosh@gmail.com |
21d3f832d795a94472b0ff2d8ec6d76309810e1a | 983d891cefbfad5d0d7924bca34695d25b2f132c | /src/main/java/com/rhast/clstrg/spring/boot/google/auth/GoogleAuthContextConfiguration.java | 1ad049c5432a9a8e9633feac901e139b076b1ba2 | [] | no_license | Rhast/ultimate_cloud_storage | b051836e723032f593b1d6dfd940775104c69a12 | 2c33cbb08e8fb8c2b4dcb736e142200a712233fd | refs/heads/master | 2022-05-05T04:24:00.347953 | 2019-10-12T20:31:11 | 2019-10-12T20:31:11 | 210,151,639 | 0 | 0 | null | 2022-03-31T18:54:49 | 2019-09-22T13:26:00 | Java | UTF-8 | Java | false | false | 2,150 | java | package com.rhast.clstrg.spring.boot.google.auth;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.security.GeneralSecurityException;
import java.util.List;
import com.google.api.client.auth.oauth2.AuthorizationCodeFlow;
import com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeFlow;
import com.google.api.client.googleapis.auth.oauth2.GoogleClientSecrets;
import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.http.javanet.NetHttpTransport;
import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.jackson2.JacksonFactory;
import com.google.api.client.util.store.DataStoreFactory;
import com.google.api.client.util.store.FileDataStoreFactory;
import com.google.api.services.drive.DriveScopes;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author lermontov-w
*/
@Configuration
public class GoogleAuthContextConfiguration {
@Bean
public GoogleClientSecrets googleClientSecrets(JsonFactory jsonFactory) throws IOException {
return GoogleClientSecrets.load(
jsonFactory,
new InputStreamReader(ClassLoader.getSystemResourceAsStream("client_secrets.json"))
);
}
@Bean
public DataStoreFactory dataStoreFactory() throws IOException {
return new FileDataStoreFactory(new File("/home/lermontov-w/.google/credentials"));
}
@Bean
public AuthorizationCodeFlow authorizationCodeFlow(
HttpTransport httpTransport,
JsonFactory jsonFactory,
GoogleClientSecrets clientSecrets,
DataStoreFactory dataStoreFactory
) throws IOException {
List<String> scopes = List.of(DriveScopes.DRIVE);
return new GoogleAuthorizationCodeFlow.Builder(
httpTransport,
jsonFactory,
clientSecrets,
scopes
)
.setDataStoreFactory(dataStoreFactory)
.build();
}
}
| [
"0rhast0@gmail.com"
] | 0rhast0@gmail.com |
3952e3500be9ca8b8242690ec83773b84c09dba9 | b7846dc1f949f541bd6fa9b1ba04f5682d712152 | /hr-babylon/src/com/bvlsh/hr/ui/dto/EducationTypeDTO.java | 67536ce4b1d52a52e42225ea610c93f93326ca6d | [] | no_license | brunolori/hrms | 4fed7e72093e48ccb979a769b026187f4d81ac28 | 4137d2e9e3ee9ef212a0be2c6326df66b3625d04 | refs/heads/master | 2020-05-15T02:58:51.578737 | 2019-05-21T13:11:55 | 2019-05-21T13:11:55 | 182,058,708 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 562 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.bvlsh.hr.ui.dto;
import java.io.Serializable;
import lombok.Getter;
import lombok.Setter;
/**
*
* @author lorela.shehu
*/
@Getter @Setter
public class EducationTypeDTO implements Serializable {
private static final long serialVersionUID = 1L;
private Integer id;
private String tag;
private boolean status;
}
| [
"Bruno@DESKTOP-6U4H5FR"
] | Bruno@DESKTOP-6U4H5FR |
61f4b8e4dd0aec4e6ae325eaabf4aa56583542eb | 7303f008f586d7f51f6bc425b8dce98c3e731511 | /src/main/java/red/man10/man10inventorytracer/MySQLManager.java | 3b5c423b42adb9d94a2b9589a500ba5a7c906cbd | [] | no_license | mametaku/Man10InventoryTracer | 47718f5c7e1c14b25fc3c10b5e47b0064a9feb07 | 0f578113eb2ec8f03bf60d8c2d26000039867f12 | refs/heads/master | 2023-01-02T18:19:22.699282 | 2020-11-01T09:22:24 | 2020-11-01T09:22:24 | 308,276,281 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,868 | java | package red.man10.man10inventorytracer;
import org.bukkit.Bukkit;
import org.bukkit.plugin.java.JavaPlugin;
import java.sql.*;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.logging.Level;
/**
* Created by takatronix on 2017/03/05.
*/
public class MySQLManager {
public Boolean debugMode = false;
private JavaPlugin plugin;
private String HOST = null;
private String DB = null;
private String USER = null;
private String PASS = null;
private String PORT = null;
boolean connected = false;
private Statement st = null;
private Connection con = null;
private String conName;
private MySQLFunc MySQL;
////////////////////////////////
// コンストラクタ
////////////////////////////////
public MySQLManager(JavaPlugin plugin, String name) {
this.plugin = plugin;
this.conName = name;
this.connected = false;
loadConfig();
this.connected = Connect(HOST, DB, USER, PASS,PORT);
if(!this.connected) {
plugin.getLogger().info("Unable to establish a MySQL connection.");
}
}
/////////////////////////////////
// 設定ファイル読み込み
/////////////////////////////////
public void loadConfig(){
// plugin.getLogger().info("MYSQL Config loading");
plugin.reloadConfig();
HOST = plugin.getConfig().getString("mysql.host");
USER = plugin.getConfig().getString("mysql.user");
PASS = plugin.getConfig().getString("mysql.pass");
PORT = plugin.getConfig().getString("mysql.port");
DB = plugin.getConfig().getString("mysql.db");
// plugin.getLogger().info("Config loaded");
}
public void commit(){
try{
this.con.commit();
}catch (Exception e){
}
}
////////////////////////////////
// connect
////////////////////////////////
public Boolean Connect(String host, String db, String user, String pass,String port) {
this.HOST = host;
this.DB = db;
this.USER = user;
this.PASS = pass;
this.MySQL = new MySQLFunc(host, db, user, pass,port);
this.con = this.MySQL.open();
if(this.con == null){
Bukkit.getLogger().info("failed to open MYSQL");
return false;
}
try {
this.st = this.con.createStatement();
this.connected = true;
this.plugin.getLogger().info("[" + this.conName + "] Connected to the database.");
} catch (SQLException var6) {
this.connected = false;
this.plugin.getLogger().info("[" + this.conName + "] Could not connect to the database.");
}
this.MySQL.close(this.con);
return Boolean.valueOf(this.connected);
}
////////////////////////////////
// counting rows
////////////////////////////////
public int countRows(String table) {
int count = 0;
ResultSet set = this.query(String.format("SELECT * FROM %s", new Object[]{table}));
try {
while(set.next()) {
++count;
}
} catch (SQLException var5) {
Bukkit.getLogger().log(Level.SEVERE, "Could not select all rows from table: " + table + ", error: " + var5.getErrorCode());
}
return count;
}
////////////////////////////////
// counting recode
////////////////////////////////
public int count(String table) {
int count = 0;
ResultSet set = this.query(String.format("SELECT count(*) from %s", table));
try {
count = set.getInt("count(*)");
} catch (SQLException var5) {
Bukkit.getLogger().log(Level.SEVERE, "Could not select all rows from table: " + table + ", error: " + var5.getErrorCode());
return -1;
}
return count;
}
////////////////////////////////
// execute
////////////////////////////////
public boolean execute(String query) {
this.MySQL = new MySQLFunc(this.HOST, this.DB, this.USER, this.PASS,this.PORT);
this.con = this.MySQL.open();
if(this.con == null){
Bukkit.getLogger().info("failed to open MYSQL");
return false;
}
boolean ret = true;
if (debugMode){
plugin.getLogger().info("query:" + query);
}
try {
this.st = this.con.createStatement();
this.st.execute(query);
} catch (SQLException var3) {
this.plugin.getLogger().info("[" + this.conName + "] Error executing statement: " +var3.getErrorCode() +":"+ var3.getLocalizedMessage());
this.plugin.getLogger().info(query);
ret = false;
}
this.close();
return ret;
}
////////////////////////////////
// executegetid
////////////////////////////////
public int executeGetId(String query) {
int key = -1;
try {
this.MySQL = new MySQLFunc(this.HOST, this.DB, this.USER, this.PASS, this.PORT);
this.con = this.MySQL.open();
PreparedStatement pstmt = this.con.prepareStatement(query, 1);
pstmt.executeUpdate();
ResultSet keys = pstmt.getGeneratedKeys();
keys.next();
key = keys.getInt(1);
}
catch (SQLException e) {
e.printStackTrace();
}
return key;
}
////////////////////////////////
// query
////////////////////////////////
public ResultSet query(String query) {
this.MySQL = new MySQLFunc(this.HOST, this.DB, this.USER, this.PASS,this.PORT);
this.con = this.MySQL.open();
ResultSet rs = null;
if(this.con == null){
Bukkit.getLogger().info("failed to open MYSQL");
return rs;
}
if (debugMode){
plugin.getLogger().info("[DEBUG] query:" + query);
}
try {
this.st = this.con.createStatement();
rs = this.st.executeQuery(query);
} catch (SQLException var4) {
this.plugin.getLogger().info("[" + this.conName + "] Error executing query: " + var4.getErrorCode());
this.plugin.getLogger().info(query);
}
// this.close();
return rs;
}
public void close(){
try {
this.st.close();
this.con.close();
this.MySQL.close(this.con);
} catch (SQLException var4) {
}
}
public static String currentTimeNoBracket(){
final DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
final Date date = new Date(System.currentTimeMillis());
return df.format(date);
}
} | [
"mametaku.man10@gmail.com"
] | mametaku.man10@gmail.com |
52bbc2f608ec7ef72033f14d4e149d2de2ee23ae | dc4d87acdcfa768867d2eb8f3a44bc8c39f8d699 | /src/main/java/org/greencheek/processio/domain/jmx/ProcessIOUsageHolder.java | f141d094fe4d0bce748f62e4bef2ed0a59f7e8fb | [
"Apache-2.0"
] | permissive | tootedom/linux-jvm-processio | ce066a1cad999aaf942a2eefdab918f5b0a4854a | 5bb1821a1c162ee46ef55121473ccfaf05400678 | refs/heads/master | 2021-01-18T13:58:48.056613 | 2012-05-03T06:23:45 | 2012-05-03T06:23:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,707 | java | /*
* Copyright 2012 dominictootell
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.greencheek.processio.domain.jmx;
import org.greencheek.processio.domain.CurrentProcessIO;
import org.greencheek.processio.domain.ProcessIO;
import org.greencheek.processio.service.usage.BasicProcessIOUsage;
import org.greencheek.processio.service.usage.ProcessIOUsage;
import java.util.concurrent.atomic.AtomicReference;
/**
* <p>
* MXBean object that holds the amount of io that the process has done;
* for easy registration in jmx.
* </p>
* <p>
* This MX object holds the time that the first IO process information was read,
* and a ProcessIO object that stores the current and previously recorded IO Usage
* </p>
* <p>
* A ProcessIOUsage object is used to provide perform calculations on the ProcessIO object
* in order to produce information such as the amount of IO done between two sample periods
* or since the created on this holder object.
* </p>
* <p>
* This implementation is used as a mechanism to obtain the ProcessIO object from the MBeanServer
* in an atomic unit, so that obtaining the amount of read io performed by the jvm can be obtain from
* the MBeanServer in the same atomic unit as when the amount of write i/o is read.
* </p>
* <p>
* User: dominictootell
* Date: 22/04/2012
* Time: 15:54
* </p>
*/
public class ProcessIOUsageHolder implements ProcessIOUsageMXBean {
// Used to indicate the start of the jvm
private final long startMillis;
// Stores a reference to the service object that is used to perform
// calculations based on the values stored in the ProcessIO object.
private final ProcessIOUsage usage;
// The reference to the ProcessIO object, that is updated periodically with new
// values from the currently read/sampled read/write io for the process.
private final AtomicReference<ProcessIO> processIORef = new AtomicReference<ProcessIO>();
public ProcessIOUsageHolder() {
this(System.currentTimeMillis(),new BasicProcessIOUsage());
}
public ProcessIOUsageHolder(ProcessIOUsage usage) {
this(System.currentTimeMillis(), usage);
}
public ProcessIOUsageHolder(long initialisationMillis,ProcessIOUsage usage) {
this.usage = usage;
processIORef.set(new ProcessIO());
this.startMillis = initialisationMillis;
}
@Override
public ProcessIO getProcessIO() {
return processIORef.get();
}
@Override
public double getSampleTimeKbPerSecondReadIO() {
return usage.getSampleTimeKbPerSecondReadIO(getProcessIO());
}
@Override
public double getSampleTimeKbPerSecondWriteIO() {
return usage.getSampleTimeKbPerSecondWriteIO(getProcessIO());
}
@Override
public double getSampleTimeMbPerSecondReadIO() {
return usage.getSampleTimeMbPerSecondReadIO(getProcessIO());
}
@Override
public double getSampleTimeMbPerSecondWriteIO() {
return usage.getSampleTimeMbPerSecondWriteIO(getProcessIO());
}
@Override
public double getAccumulatedKbPerSecondReadIO() {
return usage.getAccumulatedKbPerSecondReadIO(startMillis, getProcessIO());
}
@Override
public double getAccumulatedKbPerSecondWriteIO() {
return usage.getAccumulatedKbPerSecondWriteIO(startMillis, getProcessIO());
}
@Override
public double getAccumulatedMbPerSecondReadIO() {
return usage.getAccumulatedMbPerSecondReadIO(startMillis, getProcessIO());
}
@Override
public double getAccumulatedMbPerSecondWriteIO() {
return usage.getAccumulatedMbPerSecondWriteIO(startMillis, getProcessIO());
}
/**
* Updates the ProcessIO object reference to contain a new reference to a ProcessIO object
* that has been populated with new read and write io information from the given CurrentProcessIO object.
*
* @param io The current amount of io that has been obtained for the process.
*/
public void setProcessIO(CurrentProcessIO io) {
ProcessIO previousIO = getProcessIO();
ProcessIO updatedIO = previousIO.updateCurrentValues(io);
processIORef.set(updatedIO);
}
}
| [
"dominic.tootell@gmail.com"
] | dominic.tootell@gmail.com |
5112038cb691b2c5cef2eb4554aec202c9b0117c | 2c2140ba610d1399ce16984043f61bd6a0625081 | /TextChatSystem/src/TCE_FORM_DIALOG/loginDialog.java | 570042cef0d41d7ee40d2e6459d5cb80e92ec163 | [] | no_license | relaxBear20/Simple-messenger-java-Desktop | e77b6159d62903dc29b4f3c4546356b80ca879c0 | 640387cecdbe33dfee8ed91d252e2bc7ac8c98b5 | refs/heads/master | 2022-11-29T01:35:38.975141 | 2020-08-05T13:35:20 | 2020-08-05T13:35:20 | 285,283,141 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,362 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package TCE_FORM_DIALOG;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
/**
*
* @author admin
*/
public class loginDialog extends javax.swing.JFrame {
/**
* Creates new form Login
*/
public loginDialog() {
initComponents();
}
public JButton getBtnCancel() {
return btnCancel;
}
public JButton getBtnEnter() {
return btnEnter;
}
public JButton getBtnRegister() {
return btnRegister;
}
public JLabel getjLabel1() {
return jLabel1;
}
public JLabel getjLabel2() {
return jLabel2;
}
public JTextField getTxtLogin() {
return txtLogin;
}
public JPasswordField getTxtPass() {
return txtPass;
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
btnEnter = new javax.swing.JButton();
btnRegister = new javax.swing.JButton();
btnCancel = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
txtLogin = new javax.swing.JTextField();
txtPass = new javax.swing.JPasswordField();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
btnEnter.setText("Enter");
btnRegister.setText("Register");
btnCancel.setText("Cancel");
jLabel1.setText("Login");
jLabel2.setText("Password");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(30, 30, 30)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addComponent(jLabel2)
.addGap(0, 8, Short.MAX_VALUE))
.addComponent(jLabel1))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(txtLogin, javax.swing.GroupLayout.DEFAULT_SIZE, 146, Short.MAX_VALUE)
.addComponent(txtPass))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addGroup(layout.createSequentialGroup()
.addComponent(btnEnter)
.addGap(33, 33, 33)
.addComponent(btnRegister)
.addGap(51, 51, 51)
.addComponent(btnCancel)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGap(68, 68, 68)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(txtLogin, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(28, 28, 28)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(txtPass, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 73, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(btnEnter)
.addComponent(btnRegister)
.addComponent(btnCancel))
.addGap(68, 68, 68))
);
pack();
}// </editor-fold>//GEN-END:initComponents
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(loginDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(loginDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(loginDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(loginDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new loginDialog().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton btnCancel;
private javax.swing.JButton btnEnter;
private javax.swing.JButton btnRegister;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JTextField txtLogin;
private javax.swing.JPasswordField txtPass;
// End of variables declaration//GEN-END:variables
}
| [
"long061020@gmail.com"
] | long061020@gmail.com |
1e45ade4f3176efa42a09291b96c075d0df3967a | d6d8ea6426e3610420fbeb17381e9f2a608c87b5 | /ngai/ngai-core/src/main/java/com/siberhus/ngai/AppVariable.java | 0088398c36dbc073a62213dd6cc3be72a2b7638a | [] | no_license | hussachai/ngai-framework | a699df2943874ea439e18a2345229dd8043b5c56 | 2940371a11879025cada384981dcf1b71d13988b | refs/heads/master | 2021-01-19T17:13:30.939151 | 2012-11-22T06:35:36 | 2012-11-22T06:35:36 | 6,364,379 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 810 | java | package com.siberhus.ngai;
import java.io.Serializable;
import java.util.Date;
import java.util.Locale;
import java.util.Map;
public class AppVariable implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private String mode;
private Locale locale;
private Map<String, String> formatPattern;
public Date getCurrentDate(){
return new Date();
}
public String getMode() {
return mode;
}
public void setMode(String mode) {
this.mode = mode;
}
public Locale getLocale() {
return locale;
}
public void setLocale(Locale locale) {
this.locale = locale;
}
public Map<String, String> getFormatPattern() {
return formatPattern;
}
public void setFormatPattern(Map<String, String> formatPattern) {
this.formatPattern = formatPattern;
}
}
| [
"hussachai_add_gmail_dot_com"
] | hussachai_add_gmail_dot_com |
069ab646c194d81c73f3a1f820783b7ac050ccfd | f741627da4e61f00d169e3f4f43466c63241dad3 | /src/main/java/net/portalblock/mysonapi/MySQLInfo.java | 3579680832957df8484e70df0412d5e6ca0b0516 | [] | no_license | portalBlock/MySONAPI | fb6f50c53b62f3fa2c0a7b631b79768c6da96ff3 | 5352d9465fd1b78513940f51410f1ab188020615 | refs/heads/master | 2016-09-10T16:10:47.216537 | 2014-05-16T21:13:36 | 2014-05-16T21:13:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,277 | java | package net.portalblock.mysonapi;
/**
* Created by portalBlock on 4/29/2014.
*/
public class MySQLInfo {
private String username, password, host, database;
private int port;
@Deprecated
public MySQLInfo(String username, String password, String host, int port) {
this.username = username;
this.password = password;
this.host = host;
this.port = port;
}
public MySQLInfo(String username, String password, String host, int port, String database) {
this.username = username;
this.password = password;
this.host = host;
this.port = port;
if(database.equalsIgnoreCase("")){
this.database = null;
}else{
this.database = database;
}
}
public String getURLWithoutDatabase(){
return "jdbc:mysql://"+host+":"+port;
}
public String getURLWithDatabase(){
return "jdbc:mysql://"+host+":"+port+"/"+database;
}
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
public String getDatabase() { return database; }
public String getHost() {
return host;
}
public int getPort() {
return port;
}
}
| [
"portalBlock@fakeEmail.com"
] | portalBlock@fakeEmail.com |
590f2de34a68e0bd3df17c1f17908b9ee4599e12 | 419f8b9ba5c0502deeab567da18925194b5cd7a6 | /src/main/java/javaAdvanced/wzorceProjektowe/command/SpecjalnyKoszykProduktow.java | f27b7766d8cf81a3c05ecf8d66c0e23ca9c3f5d5 | [] | no_license | Grzebere/javaKurs | 7bbfbe61f39495abd5e1c29d9433a47072f6aefa | e0da3aaf30b850d1074e558ac8f761624969ffbd | refs/heads/master | 2023-03-23T12:54:35.653070 | 2021-03-11T17:36:52 | 2021-03-11T17:36:52 | 337,475,362 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 777 | java | package javaAdvanced.wzorceProjektowe.command;
import javaAdvanced.wzorceProjektowe.chainOfResponsibility.Produkt;
import java.util.ArrayList;
import java.util.List;
public class SpecjalnyKoszykProduktow implements PrzyciskKoszyka {
private List<Produkt> koszyk = new ArrayList<>();
@Override
public void dodaj(Produkt produkt) {
System.out.println("Do każdego produktu dodajemy ładowarke w gratisie");
koszyk.add(produkt);
koszyk.add(Produkt.LADOWARKA);
}
@Override
public void usun(Produkt produkt) {
koszyk.remove(produkt);
koszyk.remove(Produkt.LADOWARKA);
}
public List<Produkt> getKoszyk() {
System.out.println("Nasz koszyk specjalnych produktów to: ");
return koszyk;
}
} | [
"68393051+Grzebere@users.noreply.github.com"
] | 68393051+Grzebere@users.noreply.github.com |
af26be8c4ac7f95f46b897a0ac31e6f733e53fc2 | a26d317d9039f6da089348a0b45142de2ba94f6a | /back/src/main/java/com/save/earth/repository/story/StoryRepository.java | 6e274db17e03e33dde3d95a454a54e5db183ef64 | [] | no_license | yunjae228/SaveEarth | fcf0b1be6b1b6c9698e81201f7ef2a374cb3917d | b6bb8fbc398c91618193368fc900bd7fa07eaa7c | refs/heads/main | 2023-05-11T15:12:50.849536 | 2021-06-02T15:25:39 | 2021-06-02T15:25:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 213 | java | package com.save.earth.repository.story;
import com.save.earth.domain.Story;
import org.springframework.data.jpa.repository.JpaRepository;
public interface StoryRepository extends JpaRepository<Story, Long> {
}
| [
"dsa1461@gmail.com"
] | dsa1461@gmail.com |
10f018a76c13658de110602cb3aeee71d13ae247 | 1f2a383d2cd7b49d46852a050a226b9669961204 | /registry-spring-boot-ws/src/main/java/org/gbif/registry/ws/config/WebMvcConfig.java | d0d5b6d8e3ceb413111495bb147c70ae4ba9e387 | [
"Apache-2.0"
] | permissive | gbif/registry-spring-boot | 11600029a8832d3a8111024f1637a4b71e64f49f | ea1c70295632bf4febe2b85577f04433f6ba115e | refs/heads/master | 2020-06-13T14:26:16.170982 | 2020-03-13T13:49:21 | 2020-03-13T13:49:21 | 194,686,709 | 0 | 0 | Apache-2.0 | 2020-01-10T13:42:22 | 2019-07-01T14:17:48 | Java | UTF-8 | Java | false | false | 7,608 | java | /*
* Copyright 2020 Global Biodiversity Information Facility (GBIF)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gbif.registry.ws.config;
import org.gbif.api.ws.mixin.Mixins;
import org.gbif.registry.domain.ws.ErrorResponse;
import org.gbif.registry.domain.ws.IptEntityResponse;
import org.gbif.registry.domain.ws.LegacyDataset;
import org.gbif.registry.domain.ws.LegacyDatasetResponse;
import org.gbif.registry.domain.ws.LegacyDatasetResponseListWrapper;
import org.gbif.registry.domain.ws.LegacyEndpoint;
import org.gbif.registry.domain.ws.LegacyEndpointResponse;
import org.gbif.registry.domain.ws.LegacyEndpointResponseListWrapper;
import org.gbif.registry.domain.ws.LegacyInstallation;
import org.gbif.registry.domain.ws.LegacyOrganizationBriefResponse;
import org.gbif.registry.domain.ws.LegacyOrganizationBriefResponseListWrapper;
import org.gbif.registry.domain.ws.LegacyOrganizationResponse;
import org.gbif.registry.ws.converter.UuidTextMessageConverter;
import org.gbif.registry.ws.provider.PartialDateHandlerMethodArgumentResolver;
import org.gbif.ws.server.processor.ParamNameProcessor;
import org.gbif.ws.server.provider.CountryHandlerMethodArgumentResolver;
import org.gbif.ws.server.provider.DatasetSearchRequestHandlerMethodArgumentResolver;
import org.gbif.ws.server.provider.DatasetSuggestRequestHandlerMethodArgumentResolver;
import org.gbif.ws.server.provider.PageableHandlerMethodArgumentResolver;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import org.jetbrains.annotations.NotNull;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.xml.MarshallingHttpMessageConverter;
import org.springframework.oxm.jaxb.Jaxb2Marshaller;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.Module;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
import com.fasterxml.jackson.module.jaxb.JaxbAnnotationModule;
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) {
argumentResolvers.add(new PageableHandlerMethodArgumentResolver());
argumentResolvers.add(new CountryHandlerMethodArgumentResolver());
argumentResolvers.add(new PartialDateHandlerMethodArgumentResolver());
argumentResolvers.add(new DatasetSearchRequestHandlerMethodArgumentResolver());
argumentResolvers.add(new DatasetSuggestRequestHandlerMethodArgumentResolver());
}
@Override
public void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
converters.add(new UuidTextMessageConverter());
converters.add(marshallingMessageConverter());
}
/**
* Processor for annotation {@link org.gbif.api.annotation.ParamName}.
*
* @return ParamNameProcessor
*/
@Bean
protected ParamNameProcessor paramNameProcessor() {
return new ParamNameProcessor();
}
/**
* Custom {@link BeanPostProcessor} for adding {@link ParamNameProcessor}.
*
* @return BeanPostProcessor
*/
@Bean
public BeanPostProcessor beanPostProcessor() {
return new BeanPostProcessor() {
@Override
public Object postProcessBeforeInitialization(@NotNull Object bean, String beanName) {
return bean;
}
@Override
public Object postProcessAfterInitialization(@NotNull Object bean, String beanName) {
if (bean instanceof RequestMappingHandlerAdapter) {
RequestMappingHandlerAdapter adapter = (RequestMappingHandlerAdapter) bean;
List<HandlerMethodArgumentResolver> nullSafeArgumentResolvers =
Optional.ofNullable(adapter.getArgumentResolvers()).orElse(Collections.emptyList());
List<HandlerMethodArgumentResolver> argumentResolvers =
new ArrayList<>(nullSafeArgumentResolvers);
argumentResolvers.add(0, paramNameProcessor());
adapter.setArgumentResolvers(argumentResolvers);
}
return bean;
}
};
}
@Primary
@Bean
public ObjectMapper registryObjectMapper() {
final ObjectMapper objectMapper = new ObjectMapper();
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
// determines whether encountering of unknown properties (ones that do not map to a property,
// and there is no
// "any setter" or handler that can handle it) should result in a failure (throwing a
// JsonMappingException) or not.
objectMapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
// Enforce use of ISO-8601 format dates (http://wiki.fasterxml.com/JacksonFAQDateHandling)
objectMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
Mixins.getPredefinedMixins().forEach(objectMapper::addMixIn);
return objectMapper;
}
@Bean
public XmlMapper xmlMapper() {
XmlMapper xmlMapper = new XmlMapper();
ArrayList<Module> modules = new ArrayList<>();
SimpleModule module = new SimpleModule();
modules.add(module);
modules.add(new JaxbAnnotationModule());
xmlMapper.registerModules(modules);
return xmlMapper;
}
@Bean
public Jackson2ObjectMapperBuilderCustomizer customJson() {
return builder -> builder.modulesToInstall(new JaxbAnnotationModule());
}
@Bean
public MarshallingHttpMessageConverter marshallingMessageConverter() {
MarshallingHttpMessageConverter converter = new MarshallingHttpMessageConverter();
converter.setMarshaller(jaxbMarshaller());
converter.setUnmarshaller(jaxbMarshaller());
return converter;
}
@Bean
public Jaxb2Marshaller jaxbMarshaller() {
Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
marshaller.setClassesToBeBound(
LegacyEndpoint.class,
LegacyEndpointResponse.class,
LegacyEndpointResponseListWrapper.class,
LegacyInstallation.class,
LegacyOrganizationResponse.class,
LegacyOrganizationBriefResponseListWrapper.class,
LegacyOrganizationBriefResponse.class,
LegacyDataset.class,
LegacyDatasetResponse.class,
LegacyDatasetResponseListWrapper.class,
IptEntityResponse.class,
ErrorResponse.class);
return marshaller;
}
}
| [
"federicomh@gmail.com"
] | federicomh@gmail.com |
3597522acd6d9b6144e2cdcb0b293b33ad2687f8 | ffef034656b8277c7e111a3bd76ed50af4498550 | /spring-zb/src/main/java/com/zb/study/extend/A.java | 5135c4d75aa11268667c3addbdcb1e500ba42801 | [
"Apache-2.0"
] | permissive | zhangbing123/spring-study | 13545d98bb5948437f0531e5b78bf571fafce3d5 | 254a0a6a6b8464f2e10400c33f8964a87c77d8d5 | refs/heads/master | 2021-06-24T07:19:24.697171 | 2020-11-20T10:09:49 | 2020-11-20T10:09:49 | 176,185,089 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 399 | java | package com.zb.study.extend;
import org.springframework.stereotype.Component;
/**
* @description:
* @author: zhangbing
* @create: 2020-11-18 15:57
**/
@Component
public class A {
private String name;
public void test() {
System.out.println("调用A的test方法,name="+name);
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
| [
"bing.zhang@baozun.com"
] | bing.zhang@baozun.com |
7e6df77b8f40acb8cae380bd43c99b47063892be | 4d7565305289c8e665a4c54816007f1028187aa7 | /plugins/plugin-demo/src/main/java/com/voc/fr/plugin/api/ICellMeta.java | 695189b6be49cc186c4709f3eec2e06d6d3b2686 | [] | no_license | fr-thirdparty/plugin-starter | 4a782212f64bb7590cd034f51d4bb94305db9dbd | 954ac4b212c1c7696badc6d466a835bd475ebb8c | refs/heads/master | 2023-06-24T02:49:45.906471 | 2021-07-28T08:37:41 | 2021-07-28T08:37:41 | 341,394,723 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 746 | java | //package com.voc.fr.plugin.api;
//
///**
// * 表单元信息接口
// *
// * @author Wu Yujie
// * @email coffee377@dingtalk.com
// * @time 2019/09/04 21:57
// */
//public interface ICellMeta {
//
// /**
// * 设置原始数据集合
// *
// * @param rawData Object[][]
// */
// void setRawData(Object[][] rawData);
//
// /**
// * 行索引
// *
// * @return int
// */
// int getRowIndex();
//
// /**
// * 列索引
// *
// * @return int
// */
// int getColumnIndex();
//
// /**
// * 值
// *
// * @return String
// */
// Object getValue();
//
// /**
// * 依据单元格合并情况,填充二维表数据
// */
// void fillValue();
//
//}
| [
"coffee377@dingtalk.com"
] | coffee377@dingtalk.com |
98d021fd7fa065665afc4397213baf237e0e944b | 6a77551a072a7dba8b55815290afebf20509be9f | /src/test/java/com/designpattern/decorator/Base64EncodedMessageTest.java | 5e2bfd6b7b6cd2aa39be761a3c4865457a5d8212 | [] | no_license | theRealSuperMario/design-patterns | c441122dbdaf64feec512aec87b95f2803d568d7 | a1f0da6b84a955116eef178b7d89e343e32123ec | refs/heads/master | 2020-04-25T02:32:24.681874 | 2018-08-12T05:06:25 | 2018-08-12T05:06:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 998 | java | package com.designpattern.decorator;
import com.designpattern.Fixtures;
import com.designpattern.factory.abstract_factory.ResourceFactory;
import lombok.extern.slf4j.Slf4j;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
@Slf4j
public class Base64EncodedMessageTest {
long start;
private ResourceFactory factory;
@Before
public void start() {
start = System.currentTimeMillis();
}
@After
public void end() {
log.info("Total Time took in milliseconds: {}", (System.currentTimeMillis() - start));
}
@Test
public void getContentTest() {
com.designpattern.decorator.Message m = new TextMessage(Fixtures.TEXT_MESSAGE);
com.designpattern.decorator.Message decorator = new HtmlEncodedMessage(m);
decorator = new Base64EncodedMessage(decorator);
String actual = decorator.getContent();
Assert.assertEquals(Fixtures.BASE64_TEXT_MESSAGE, actual);
}
} | [
"sunilsoni@live.in"
] | sunilsoni@live.in |
d12d2c8d299c821c26eaa820ed4b2624cf038185 | 222862cdac7f190ecedc3391d738904c36075f35 | /src/test/java/nl/gerete/generator/GenerateScreenTest.java | 2eae2993fee352065eb1aa5547bbe978ba497140 | [] | no_license | molshoop/test_test_test | 919ddeab6679494d39ea6fd1630d4543d99604ad | 52f6735de58e1ba39d5989dd647a6280dde223cf | refs/heads/main | 2023-04-26T08:57:41.720177 | 2021-05-25T18:13:25 | 2021-05-25T18:13:25 | 361,498,327 | 0 | 0 | null | 2021-05-25T18:01:20 | 2021-04-25T17:48:03 | Java | UTF-8 | Java | false | false | 246 | java | package nl.gerete.generator;
import org.junit.jupiter.api.Test;
/**
* @author <a href="mailto:marc.mol@bloomville.nl">Marc Mol</a>
* Created on 11-05-2021.
*/
class GenerateScreenTest {
@Test
public void testGenerateHelloWorld() {
}
}
| [
"marc.mol@bloomville.nl"
] | marc.mol@bloomville.nl |
d3b0ca7092b17457c3f0ebe4a4dc9ee70cff8341 | ad6434dc113e22e64f0709c95099babe6b2cc854 | /src/LargestBSTSubtree/LargestBSTSubtree.java | 2eb29483dbeb353807e907594f3b36ba68012806 | [] | no_license | shiyanch/Leetcode_Java | f8b7807fbbc0174d45127b65b7b48d836887983c | 20df421f44b1907af6528578baf53efddfee48b1 | refs/heads/master | 2023-05-28T00:40:30.569992 | 2023-05-17T03:51:34 | 2023-05-17T03:51:34 | 48,945,641 | 9 | 2 | null | null | null | null | UTF-8 | Java | false | false | 986 | java | package LargestBSTSubtree;
/**
* 333. Largest BST Subtree
*
* Given a binary tree, find the largest subtree which is a Binary Search Tree (BST),
* where largest means subtree with largest number of nodes in it.
*/
class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
public class LargestBSTSubtree {
public int largestBSTSubtree(TreeNode root) {
int res = verify(root, Integer.MIN_VALUE, Integer.MAX_VALUE);
return (res >= 0) ? res : Math.max(largestBSTSubtree(root.left), largestBSTSubtree(root.right));
}
private int verify(TreeNode root, int min, int max) {
if (root == null) {
return 0;
}
if (root.val <= min || root.val >= max) {
return -1;
}
int left = verify(root.left, min, root.val);
int right = verify(root.right, root.val, max);
return (left == -1 || right == -1) ? -1 : 1 + left + right;
}
} | [
"shiyanch@gmail.com"
] | shiyanch@gmail.com |
29a8c50c7560396395592a5fe4dc673f4d2c0bff | 8d30a05e1586368f66af53bb6116c7667f44a82c | /app/src/main/java/com/company/product/Support/NetworkState/ConnectivityJob.java | cd8e0f1e276b9df5a0cd48d1d171389692c90f01 | [] | no_license | aadityadaga/AndroidBase | 0e5644fa0e3236990af562ef554e8623613bad5c | 4d6b2580548f264165b39908f3ead388e0c0f62d | refs/heads/master | 2020-03-30T16:21:33.864874 | 2018-09-14T16:42:34 | 2018-09-14T16:42:34 | 151,405,164 | 1 | 0 | null | 2018-10-03T11:55:37 | 2018-10-03T11:55:36 | null | UTF-8 | Java | false | false | 2,493 | java | package com.company.product.Support.NetworkState;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.NetworkRequest;
import android.os.Build;
import com.firebase.jobdispatcher.JobParameters;
import com.firebase.jobdispatcher.JobService;
import com.orhanobut.logger.Logger;
public class ConnectivityJob extends JobService {
private ConnectivityManager connectivityManager;
private ConnectivityManager.NetworkCallback networkCallback;
private BroadcastReceiver connectivityChange;
@Override
public boolean onStartJob(JobParameters job) {
connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
connectivityManager.registerNetworkCallback(new NetworkRequest.Builder().build(), networkCallback = new ConnectivityManager.NetworkCallback() {
// -Snip-
});
} else {
registerReceiver(connectivityChange = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
handleConnectivityChange(!intent.hasExtra("noConnectivity"), intent.getIntExtra("networkType", -1));
}
}, new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));
}
NetworkInfo activeNetwork = connectivityManager.getActiveNetworkInfo();
if (activeNetwork == null) {
Logger.e("vinod - No active network.");
} else {
// Some logic..
Logger.e("vinod - Found active network.");
}
// Logger.e("vinod - Done with onStartJob");
return true;
}
@Override
public boolean onStopJob(JobParameters job) {
if (networkCallback != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) connectivityManager.unregisterNetworkCallback(networkCallback);
else if (connectivityChange != null) unregisterReceiver(connectivityChange);
return true;
}
private void handleConnectivityChange(boolean connected, int type) {
// Calls handleConnectivityChange(boolean connected, ConnectionType connectionType)
}
private void handleConnectivityChange(NetworkInfo networkInfo) {
// Calls handleConnectivityChange(boolean connected, int type)
}
private void handleConnectivityChange(boolean connected, ConnectionType connectionType) {
// Logic based on the new connection
}
private enum ConnectionType {
MOBILE, WIFI, VPN, OTHER;
}
} | [
"vinod.morya@wildnettechnologies.com"
] | vinod.morya@wildnettechnologies.com |
ceb223546a3491f4f3cc3bb16735860cda712dae | fb88dea544dd0056816def50c98bda5c08d9d204 | /src-pos/com/openbravo/pos/inventory/AttributeInfo.java | 7f5ad5baf695bdea833ec8d63a96760d88e9c0da | [
"Apache-2.0"
] | permissive | dante-mx/openbravopos | ea9ee734bc6a529f948aa287dce32436341cb135 | 90f5395103fee688eea9186aa12dcff5cc738c6f | refs/heads/master | 2021-01-19T00:41:02.940625 | 2016-11-10T07:28:23 | 2016-11-10T07:28:23 | 73,146,211 | 0 | 1 | null | 2016-11-10T07:28:23 | 2016-11-08T03:41:32 | Java | UTF-8 | Java | false | false | 1,427 | java | // Openbravo POS is a point of sales application designed for touch screens.
// Copyright (C) 2008-2009 Openbravo, S.L.
// http://www.openbravo.com/product/pos
//
// This file is part of Openbravo POS.
//
// Openbravo POS is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Openbravo POS is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Openbravo POS. If not, see <http://www.gnu.org/licenses/>.
package com.openbravo.pos.inventory;
import com.openbravo.data.loader.IKeyed;
/**
*
* @author adrianromero
*/
public class AttributeInfo implements IKeyed {
private Long id;
private String name;
/** Creates new CategoryInfo */
public AttributeInfo(Long id, String name) {
this.id = id;
this.name = name;
}
public Long getKey() {
return id;
}
public Long getId() {
return id;
}
@Override
public String toString() {
return name;
}
}
| [
"dante@Dantes-MacBook-Pro.local"
] | dante@Dantes-MacBook-Pro.local |
afb58bd65917d69ca9e66b2318df8ba995de2e3a | 3afa7db67990c5f7344c31acaa9414e5a84d0678 | /reactive/src/main/java/or/reactive/learning/reactive/common/Program.java | 2d0e0710e4e4e497a81e5abb79e54c76cc04d60a | [] | no_license | amezzi/ReactiveExperiments | 32b2ea1e54871c9da7350469714f777f17e6b355 | f03a1e0b31dee3f6bea029a279394b83df2215da | refs/heads/master | 2022-06-16T18:57:19.015841 | 2019-08-28T04:18:27 | 2019-08-28T04:18:27 | 204,605,296 | 0 | 0 | null | 2022-05-20T21:07:41 | 2019-08-27T02:44:01 | Java | UTF-8 | Java | false | false | 280 | java | package or.reactive.learning.reactive.common;
/**
* All the examples of the book implement this.
* It introduces a name and cahpter number for the example.
*
* @author meddle
*/
public interface Program {
String name();
int chapter();
void run();
}
| [
"abejaoui55@hotmail.com"
] | abejaoui55@hotmail.com |
22fb193a2614506aca87e6a5345eae46fb6fd129 | 5305927c79303b43d325a3a10b9e2882e0f0d2ca | /src/Graph/Node.java | ffd85df1ce1cbee943f037966fc8f0d3ea744d04 | [] | no_license | lomo44/Network361 | 4ce29cc68839d7d51abf30f9befb7c350b3509eb | 69bd7e49dfafe9db7749ced3faf3badad630206e | refs/heads/master | 2021-01-10T07:35:44.534039 | 2016-03-20T20:46:02 | 2016-03-20T20:46:02 | 50,053,708 | 0 | 1 | null | 2019-05-07T06:09:48 | 2016-01-20T19:14:13 | Java | UTF-8 | Java | false | false | 703 | java | package Graph;
import java.util.ArrayList;
public class Node implements Comparable<Node> {
public final int name; // Node’s name
public ArrayList<Edge> neighbors; // set of neighbors to this node
public double minDistance = Double.POSITIVE_INFINITY; //Minimum weight, //initially inf
public Node previous; // to keep the path
public Node(int argName) // constructor to create an instance of this class
{
name = argName;
neighbors = new ArrayList<Edge>();
}
@Override
public int compareTo(Node other)
{
return Double.compare(minDistance, other.minDistance);
}
public void Reset(){
minDistance = Double.POSITIVE_INFINITY;
previous = null;
}
} | [
"johnnn.li@mail.utoronto.ca"
] | johnnn.li@mail.utoronto.ca |
f26348fe00f1c7a73a528a33c32462a31822fc21 | 40d844c1c780cf3618979626282cf59be833907f | /src/testcases/CWE789_Uncontrolled_Mem_Alloc/s01/CWE789_Uncontrolled_Mem_Alloc__connect_tcp_HashSet_51a.java | a9fb7754e4c4fea912cfa6ff75c25befef05efe6 | [] | no_license | rubengomez97/juliet | f9566de7be198921113658f904b521b6bca4d262 | 13debb7a1cc801977b9371b8cc1a313cd1de3a0e | refs/heads/master | 2023-06-02T00:37:24.532638 | 2021-06-23T17:22:22 | 2021-06-23T17:22:22 | 379,676,259 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,750 | java | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE789_Uncontrolled_Mem_Alloc__connect_tcp_HashSet_51a.java
Label Definition File: CWE789_Uncontrolled_Mem_Alloc.int.label.xml
Template File: sources-sink-51a.tmpl.java
*/
/*
* @description
* CWE: 789 Uncontrolled Memory Allocation
* BadSource: connect_tcp Read data using an outbound tcp connection
* GoodSource: A hardcoded non-zero, non-min, non-max, even number
* BadSink: HashSet Create a HashSet using data as the initial size
* Flow Variant: 51 Data flow: data passed as an argument from one function to another in different classes in the same package
*
* */
package testcases.CWE789_Uncontrolled_Mem_Alloc.s01;
import testcasesupport.*;
import javax.servlet.http.*;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.net.Socket;
import java.util.logging.Level;
public class CWE789_Uncontrolled_Mem_Alloc__connect_tcp_HashSet_51a extends AbstractTestCase
{
public void bad() throws Throwable
{
int data;
data = Integer.MIN_VALUE; /* Initialize data */
/* Read data using an outbound tcp connection */
{
Socket socket = null;
BufferedReader readerBuffered = null;
InputStreamReader readerInputStream = null;
try
{
/* Read data using an outbound tcp connection */
socket = new Socket("host.example.org", 39544);
/* read input from socket */
readerInputStream = new InputStreamReader(socket.getInputStream(), "UTF-8");
readerBuffered = new BufferedReader(readerInputStream);
/* POTENTIAL FLAW: Read data using an outbound tcp connection */
String stringNumber = readerBuffered.readLine();
if (stringNumber != null) /* avoid NPD incidental warnings */
{
try
{
data = Integer.parseInt(stringNumber.trim());
}
catch(NumberFormatException exceptNumberFormat)
{
IO.logger.log(Level.WARNING, "Number format exception parsing data from string", exceptNumberFormat);
}
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error with stream reading", exceptIO);
}
finally
{
/* clean up stream reading objects */
try
{
if (readerBuffered != null)
{
readerBuffered.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing BufferedReader", exceptIO);
}
try
{
if (readerInputStream != null)
{
readerInputStream.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing InputStreamReader", exceptIO);
}
/* clean up socket objects */
try
{
if (socket != null)
{
socket.close();
}
}
catch (IOException exceptIO)
{
IO.logger.log(Level.WARNING, "Error closing Socket", exceptIO);
}
}
}
(new CWE789_Uncontrolled_Mem_Alloc__connect_tcp_HashSet_51b()).badSink(data );
}
public void good() throws Throwable
{
goodG2B();
}
/* goodG2B() - use goodsource and badsink */
private void goodG2B() throws Throwable
{
int data;
/* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
data = 2;
(new CWE789_Uncontrolled_Mem_Alloc__connect_tcp_HashSet_51b()).goodG2BSink(data );
}
/* Below is the main(). It is only used when building this testcase on
* its own for testing or for building a binary to use in testing binary
* analysis tools. It is not used when compiling all the testcases as one
* application, which is how source code analysis tools are tested.
*/
public static void main(String[] args) throws ClassNotFoundException,
InstantiationException, IllegalAccessException
{
mainFromParent(args);
}
}
| [
"you@example.com"
] | you@example.com |
2607eeb1d63e2a0f438bf8c9dd5b1cc97a01ae8e | 80f95fd3305c7b47d68b6fea6215c74d075a1fad | /app/src/main/java/org/uk/cyberbyte/armaworks/Api/Models/ArmaLife/Player/CivPosition.java | 59385407db55ae679cf072d4412fa80774763de9 | [] | no_license | Cyberbyte-Studios/Arma-Works-Mobile | 67547e03c487783b79cf999aa5210dab3e93efbc | 52e6f8d5e3cd66aebb1b97a1484f691cd48ce031 | refs/heads/master | 2021-06-14T05:27:20.996387 | 2017-02-04T13:39:43 | 2017-02-04T13:39:43 | 77,869,526 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 704 | java |
package org.uk.cyberbyte.armaworks.Api.Models.ArmaLife.Player;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class CivPosition {
@SerializedName("x")
@Expose
private String x;
@SerializedName("y")
@Expose
private String y;
@SerializedName("z")
@Expose
private String z;
public String getX() {
return x;
}
public void setX(String x) {
this.x = x;
}
public String getY() {
return y;
}
public void setY(String y) {
this.y = y;
}
public String getZ() {
return z;
}
public void setZ(String z) {
this.z = z;
}
}
| [
"theatrepro11@gmail.com"
] | theatrepro11@gmail.com |
69ddca2e470268bba190b7ae282570144ad03f11 | f1b90caacb663392c1b73a77fd94827cdb4a3417 | /app/src/main/java/com/sleepingpandaaa/banking1/Userlist.java | f9cc50acf8b36af7b48a4bce1438618a3903fb91 | [] | no_license | reedweiwei20/BankingSystem | b4ebdc15d536657fab50fb75e24c856318b2df60 | e47a159aee5ab73e7545df6eee2fd31aae7985fd | refs/heads/master | 2023-03-29T03:26:41.349640 | 2021-03-31T08:35:34 | 2021-03-31T08:35:34 | 330,136,311 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,644 | java | package com.sleepingpandaaa.banking1;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import java.text.NumberFormat;
import java.util.ArrayList;
import java.util.List;
public class Userlist extends AppCompatActivity {
List<Model> modelList_showlist = new ArrayList<>();
RecyclerView mRecyclerView;
RecyclerView.LayoutManager layoutManager;
CustomeAdapterUserlist adapter;
String phonenumber;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_show_allusers);
mRecyclerView = findViewById(R.id.recyclerview);
mRecyclerView.setHasFixedSize(true);
layoutManager = new LinearLayoutManager(this);
mRecyclerView.setLayoutManager(layoutManager);
showData();
}
private void showData() {
modelList_showlist.clear();
Cursor cursor = new DatabaseHelper(this).readalldata();
while(cursor.moveToNext()){
String balancefromdb = cursor.getString(2);
Double balance = Double.parseDouble(balancefromdb);
NumberFormat nf = NumberFormat.getNumberInstance();
nf.setGroupingUsed(true);
nf.setMaximumFractionDigits(2);
nf.setMinimumFractionDigits(2);
String price = nf.format(balance);
Model model = new Model(cursor.getString(0), cursor.getString(1), price);
modelList_showlist.add(model);
}
adapter = new CustomeAdapterUserlist(Userlist.this, modelList_showlist);
mRecyclerView.setAdapter(adapter);
}
public void nextActivity(int position) {
phonenumber = modelList_showlist.get(position).getPhoneno();
Intent intent = new Intent(Userlist.this, Userdata.class);
intent.putExtra("phonenumber",phonenumber);
startActivity(intent);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_history, menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
if(item.getItemId()==R.id.action_history){
startActivity(new Intent(Userlist.this, HistoryList.class));
}
return super.onOptionsItemSelected(item);
}
}
| [
"chopadesakshi20@gmail.com"
] | chopadesakshi20@gmail.com |
01fe7c75f89d50701bfce354344abbc91c3f554c | b99fcf4e9600a93b8c3c52eb8dcca8bd01fb28cd | /src/org/kharj/kursach_db/ParcelException.java | 177bc57abe990689cf708d6707022180aacedd97 | [] | no_license | makarovussr/oracle-kursach-kharj | 7dc07fedc890f28bfcbfcf9b823a8c7173c73d55 | 59e4b984f151f35fbefb4b10e8b83b1308ad1c99 | refs/heads/master | 2021-01-16T21:24:13.773640 | 2014-06-22T23:07:41 | 2014-06-22T23:07:41 | 35,817,977 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 791 | java | package org.kharj.kursach_db;
public class ParcelException extends Exception {
public Boolean rateNotFound = false;
public Boolean minWeight = false;
public Boolean maxWeight = false;
public ParcelException() {
// TODO Auto-generated constructor stub
}
public ParcelException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public ParcelException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public ParcelException(String arg0, Throwable arg1) {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
public ParcelException(String arg0, Throwable arg1, boolean arg2,
boolean arg3) {
super(arg0, arg1, arg2, arg3);
// TODO Auto-generated constructor stub
}
}
| [
"1995kenny@gmail.com@ba8dd42b-7831-6dd7-304d-ebcc8724e335"
] | 1995kenny@gmail.com@ba8dd42b-7831-6dd7-304d-ebcc8724e335 |
68bc826263d443a8e5b564c5cfd437431118cd09 | 7cb59f80f7a76f25f925c3339602f374ed50cbf1 | /src/verification_pacakge/GetPageSource_Class.java | a0a8affbc46910c3ced763978bf4fd881e9dda0b | [] | no_license | charanreddy-tech/MyRepository12 | 24c48a661d5661c727a43ea241b746457eba2cbe | 696438355ae6e2cd777d07eefe5c173ebb0ae2d7 | refs/heads/master | 2020-09-20T16:44:32.988293 | 2019-11-28T03:22:44 | 2019-11-28T03:22:44 | 224,540,109 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 715 | java | package verification_pacakge;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class GetPageSource_Class {
public static void main(String[] args)
{
System.setProperty("webdriver.gecko.driver", "Browsers\\geckodriver.exe");
WebDriver driver=new FirefoxDriver();
driver.get("https://www.facebook.com/");
driver.manage().window().maximize();
String act_pagesource=driver.getPageSource();
String exp_pagesource="Facebook";
if (act_pagesource.contains(exp_pagesource))
{
System.out.println("Page source is Present");
} else {
System.out.println("Page Source is Not Present");
}
}
}
| [
"User@charan"
] | User@charan |
82a17c69eb374cb04623244172977683dde25caa | 7213765fd09117b7bdd40d4579a3de678553091e | /src/data/Estudiante.java | 03c75c39651844ee4241693bf1e1082b5b3a809d | [] | no_license | ssalgado24/HawkEye | 66f2dc0665f445a3fc0f62e2384ab80c28eb438d | 7dd79256c03e2047486303e1bfe9cd24101f051d | refs/heads/master | 2022-02-14T11:20:55.985593 | 2019-07-23T03:33:32 | 2019-07-23T03:33:32 | 198,339,264 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,177 | java |
package data;
public class Estudiante extends Usuario {
private String carrera;
private String facultad;
public Estudiante(String nombre, String apellido, String documento, String contrasena, String usuario, String eop, String correoUN, String carrera,String facultad) {
super(nombre, apellido, documento, contrasena, usuario, correoUN,eop);
this.carrera= carrera;
this.facultad= facultad;
}
public String getCarrera() {
return carrera;
}
public void setCarrera(String carrera) {
this.carrera = carrera;
}
public String getFacultad() {
return facultad;
}
public void setFacultad(String facultad) {
this.facultad = facultad;
}
@Override
public String toString() {
return "Nombre: "+ nombre + ", Apellido: "+ apellido + ", Documento: "+ documento
+ ", Usuario: "+ usuario + ", Contraseña: "+ contrasena + ", CorreoUN: "+ correoUN
+ ", Facultad: " + facultad+ ", Carrera: " + carrera;
}
@Override
public void elegirOpcion() {
}
}
| [
"Samuel@DESKTOP-0DK35MT"
] | Samuel@DESKTOP-0DK35MT |
d7ff8e0a356ea5092da385ebc1300b838fd10e4b | 8946dd36e1f4a8dab5291d130fd47d59f303537a | /mrp-front/mrp-front-ejb/src/main/java/ru/ifmo/cis/mrp/front/ejb/OrdersBean.java | 7346fbce5beb414af79e803f65e3faa72169b84d | [] | no_license | kesha78/5513-cis | bdcfa08b8f450651d117ef386249fdc1c36cd551 | e19a181773eee3b7bcfe1a20de638393e157ce22 | refs/heads/master | 2021-01-25T07:34:49.531061 | 2011-11-24T11:05:04 | 2011-11-24T11:05:04 | 2,520,535 | 4 | 1 | null | null | null | null | UTF-8 | Java | false | false | 207 | java | package ru.ifmo.cis.mrp.front.ejb;
import ru.ifmo.cis.mrp.entity.Order;
import javax.ejb.Local;
import java.util.Collection;
@Local
public interface OrdersBean {
Collection<Order> getAllOrders();
}
| [
"barbeee78@gmail.com"
] | barbeee78@gmail.com |
a35581939b38f0e8cc2c424f0cf89ee02649c666 | 1aa609dbe0146acda6fc0d900fd3bcea8b76d8c0 | /src/main/java/br/com/uol/crud/model/client/MetaWeather.java | 6bfffcf3db1c758583ea2cfef54fd062fffb809d | [] | no_license | Evertonrmm/crud-cliente | 633601a0f383cb9b178da409e2092cd5700e84c4 | a759a95a850199c123b833af37a9fa8dc7918b5e | refs/heads/master | 2022-09-16T01:48:06.602362 | 2018-08-28T00:32:47 | 2018-08-28T00:32:47 | 146,369,804 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 570 | java | package br.com.uol.crud.model.client;
import com.google.gson.annotations.SerializedName;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
public class MetaWeather {
@Getter
@Setter
@SerializedName("latt_long")
private String latt_long;
@Getter
@Setter
@SerializedName("woeid")
private String woeid;
@Getter
@Setter
@SerializedName("distance")
private String distance;
@Getter
@Setter
@SerializedName("consolidated_weather")
private List<ConsolidatedWeather> consolidatedWeather;
}
| [
"everton.mendes@solutis.com.br"
] | everton.mendes@solutis.com.br |
f4dcdc35efe51c4ba9b3c8bde3c6cd7ce34cb536 | b8411ebb061dd56427b5aa0bb99e2e01a0e69023 | /pinju-biz/src/main/java/com/yuwang/pinju/core/shop/manager/ShopLabelManager.java | e799c5c52bce540ae6499971d6cd885e62e044e4 | [] | no_license | sgrass/double11_bugfix_asst_acct | afce8261bb275474f792e1cb41d9ff4fabad06b0 | 8eea9a16b43600c0c7574db5353c3d3b86cf4694 | refs/heads/master | 2021-01-19T04:48:03.445861 | 2017-04-06T06:34:17 | 2017-04-06T06:34:17 | 87,394,668 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 694 | java | package com.yuwang.pinju.core.shop.manager;
import com.yuwang.pinju.core.common.ManagerException;
import com.yuwang.pinju.domain.shop.ShopInfoDO;
/**
* 店铺标签
*
* @author 杨昭
*
* @since 2011-12-5
*/
public interface ShopLabelManager {
/**
* 添加店铺标签
* @author 杨昭
* @return Integer 受影响行数
* @since 2011-12-5
*/
Integer updateShopLabel(ShopInfoDO shopInfoDO) throws ManagerException;
/**
* 根据memberId或得店铺标签信息
* @param ShopInfoDO shopInfoDO
* @author 杨昭
* @return ShopInfoDO
* @since 2011-12-5
*/
ShopInfoDO getShopLabelByShopId(ShopInfoDO shopInfoDO)throws ManagerException;
}
| [
"xgrass@foxmail.com"
] | xgrass@foxmail.com |
9b34f092c6cb3577386e2bc027e6d2b115ca54ec | 78bcb506919267837a9e6b8026a3a33f8f66e183 | /eclipse-workspace/nl.maikel.xtext.StateDef/src/nl/maikel/xtext/generator/Utils.java | acc0cf58d4fa5e9e4513639fca20c9d6837d343a | [] | no_license | SudoHenk/protocoldef | c1b6d89039df7c0fb2b085fd296a8b689096d220 | 86e7246433176d78efa851c9a4b003ef8fa13cfc | refs/heads/master | 2021-05-24T09:13:15.307043 | 2020-04-06T12:35:30 | 2020-04-06T12:35:30 | 253,489,028 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,567 | java | package nl.sudohenk.xtext.generator;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import nl.sudohenk.xtext.generator.util.BinaryLinkedList;
import nl.sudohenk.xtext.stateDef.Message;
import nl.sudohenk.xtext.stateDef.MessageByteRange;
import nl.sudohenk.xtext.stateDef.MessageStructEntry;
public class Utils {
/**
* Convert an object list to a primitive byte array.
* @param list the List object containing the objects.
* @return byte[]
*/
public static byte[] convertToPrimitive(List<Byte> list) {
byte[] result = new byte[list.size()];
for(int i = 0; i < list.size(); i++) {
result[i] = list.get(i).byteValue();
}
return result;
}
/**
* Convert a hex representation to a Byte list
* @param hex MUST start with 0x.. (e.g. 0xFF, or 0xFFFF)
* @param byteSize the size of the byte array that must be returned
* @return
*/
public static List<Byte> convertHexStrToBytes(String hex, int byteSize) {
List<Byte> list = convertHexStrToBytes(hex);
if(list.size() > byteSize) {
list = list.subList(list.size()-byteSize, list.size());
} else if(list.size() < byteSize) {
for(int i = 0; i < (byteSize-list.size()+1); i++) {
list.add(0, (byte)0x00);
}
}
return list;
}
public static List<Byte> convertHexStrToBytes(String hex) {
List<Byte> list = new BinaryLinkedList();
String rawHex = hex.substring(2);
if(rawHex.length() == 0) {
return list;
}
int expectedSize = rawHex.length()/2;
for(byte b : new BigInteger(rawHex, 16).toByteArray()) {
list.add(b);
}
if(list.size() < expectedSize) {
for(int i = 0; i < (expectedSize-list.size()+1); i++) {
list.add(0, (byte)0x00);
}
}
return list;
}
/**
* Return a byte list of size byteSize
* @param byteSize the size of the list
* @return a list containing FF bytes.
*/
public static List<Byte> getBytesOfSize(int byteSize) {
List<Byte> list = new BinaryLinkedList();
for(int i = 0; i < byteSize; i++) {
list.add((byte)0xFF);
}
return list;
}
public static String getFileNameForMessage(Message message) {
return Constants.MESSAGE_FOLDER_LOCATION+message.getName()+Constants.MESSAGE_FILE_EXTENSION;
}
public static String getFileNameForPcapMessage(Message message) {
return Constants.MESSAGE_FOLDER_LOCATION+message.getName()+Constants.PCAP_FILE_EXTENSION;
}
public static int getRequiredBytesForDecimalValue(int maxDecimalValue) {
return (int) Math.ceil((Math.log(maxDecimalValue) / Math.log(2))/8);
}
}
| [
"MY_NAME@example.com"
] | MY_NAME@example.com |
e616208a82347d7d161711e47db6c75c6dd582bc | 053e5656a001c2a5326c67856ca02b1cf6118aa1 | /MAP/Lab4/src/Model/File/OpenFile.java | 07e32ba272c27e627590fa6f9c4bfee9a47842db | [] | no_license | dandreiolteanu/FacultyCourses | ab0e7a2ee1f14b905bde3fd6b7b2cbcc09c5709e | 66af851bc10de479cb1f5e94f07473f416377bfa | refs/heads/master | 2021-05-15T10:14:46.239492 | 2018-05-15T08:31:55 | 2018-05-15T08:31:55 | 108,172,493 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,432 | java | package Model.File;
import Model.Statement.*;
import Model.*;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class OpenFile implements Statement {
private String fileName;
private String varName;
public OpenFile(String fl, String vn)
{
fileName = fl;
varName = vn;
}
public PrgState execute(PrgState state) {
if(!isOpen(state))
try {
BufferedReader br = new BufferedReader(new FileReader(fileName));
FileData fd = new FileData(fileName, br);
int id = IDGenerator.generate_ID();
state.getFileTable().add(id,fd);
IDictionary<String, Integer> dict = state.getSymbolT();
if(dict.contains(varName))
{
dict.update(varName, id);
}
else dict.add(varName, id);
}
catch(IOException ex) {
System.out.println(ex.toString());
}
return state;
}
private boolean isOpen(PrgState prg) {
for(FileData crt : prg.getFileTable().getValues())
if(crt.getFileName().equals(fileName))
return true;
return false;
}
@Override
public String toString() {
return "OpenFile{" + "fileName='" + fileName + '\'' + ", varName='" + varName + '\'' + '}';
}
} | [
"a.olteanu198@yahoo.com"
] | a.olteanu198@yahoo.com |
ab1c27d106f9559c48437b9640dd2783ae2bee7f | 617bd24f8c106b9c707a0afcef2abc2b64e08e43 | /android/versioned-abis/expoview-abi34_0_0/src/main/java/abi34_0_0/expo/modules/google/signin/Serialization.java | 5a09a51dd112a0d77a5d175e534d2679968bd105 | [
"MIT",
"BSD-3-Clause",
"Apache-2.0"
] | permissive | atiato78/expo | 54f15c932a3984f2a60b7fddc9bd55c470ba92e4 | 0c9ef858e125b5f9d421edc183ec10aa84c9b41b | refs/heads/master | 2022-12-15T09:30:33.721793 | 2019-07-31T20:04:43 | 2019-07-31T20:04:43 | 199,931,004 | 2 | 0 | MIT | 2022-12-04T05:33:11 | 2019-07-31T21:24:06 | Objective-C | UTF-8 | Java | false | false | 5,807 | java | package abi34_0_0.expo.modules.google.signin;
import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.NonNull;
import com.google.android.gms.auth.api.signin.GoogleSignInAccount;
import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
import com.google.android.gms.common.api.ApiException;
import com.google.android.gms.common.api.CommonStatusCodes;
import com.google.android.gms.common.api.Scope;
import com.google.android.gms.tasks.Task;
import java.util.ArrayList;
import java.util.Map;
import abi34_0_0.org.unimodules.core.Promise;
public class Serialization {
private Bundle auth;
static String scopesToString(ArrayList<String> scopes) {
StringBuilder sb = new StringBuilder("oauth2:");
for (int i = 0; i < scopes.size(); i++) {
sb.append(scopes.get(i)).append(" ");
}
return sb.toString().trim();
}
static Bundle jsonFromGoogleUser(@NonNull GoogleSignInAccount acct) {
Bundle auth = new Bundle();
auth.putString("accessToken", null);
auth.putString("accessTokenExpirationDate", null);
auth.putString("refreshToken", null);
auth.putString("idToken", acct.getIdToken());
// auth.putDouble("idTokenExpirationDate", acct.getExpirationTimeSecs());
Uri photoUrl = acct.getPhotoUrl();
Bundle user = new Bundle();
user.putString("uid", acct.getId());
user.putString("displayName", acct.getDisplayName());
user.putString("firstName", acct.getGivenName());
user.putString("lastName", acct.getFamilyName());
user.putString("email", acct.getEmail());
user.putString("photoURL", photoUrl != null ? photoUrl.toString() : null);
user.putString("serverAuthCode", acct.getServerAuthCode());
user.putBundle("auth", auth);
// TODO: Bacon: If google ever surfaces this value, we should add it for parity with iOS
user.putString("domain", null);
ArrayList scopes = new ArrayList();
for (Scope scope : acct.getGrantedScopes()) {
String scopeString = scope.toString();
if (scopeString.startsWith("http")) {
scopes.add(scopeString);
}
}
user.putStringArrayList("scopes", scopes);
return user;
}
private static Boolean isNullOrEmpty(String s) {
return (s == null || s.isEmpty());
}
static GoogleSignInOptions getSignInOptions(
final Context context,
final Map<String, Object> config,
final String appOwnership,
final Promise promise
) {
String signInOption = config.containsKey("signInType") ? (String) config.get("signInType") : "default";
ArrayList<String> scopes = config.containsKey("scopes") ? (ArrayList) config.get("scopes") : new ArrayList();
String webClientId = config.containsKey("webClientId") ? (String) config.get("webClientId") : null;
boolean isOfflineEnabled = config.containsKey("isOfflineEnabled") && (boolean) config.get("isOfflineEnabled");
boolean isPromptEnabled = config.containsKey("isPromptEnabled") && (boolean) config.get("isPromptEnabled");
String accountName = config.containsKey("accountName") ? (String) config.get("accountName") : null;
String hostedDomain = config.containsKey("hostedDomain") ? (String) config.get("hostedDomain") : null;
GoogleSignInOptions.Builder optionsBuilder;
switch (signInOption) {
case "default":
optionsBuilder =
new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN).requestEmail().requestProfile();
break;
case "games":
optionsBuilder =
new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_GAMES_SIGN_IN);
break;
// TODO: Bacon: Add fitness
// case "fitness":
// optionsBuilder =
// new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN);
// optionsBuilder.addExtension(GoogleSignInOptionsExtension.FITNESS);
// break;
default:
promise.reject("E_GOOGLE_SIGN_IN", "Invalid signInOption");
return null;
}
if (webClientId == null && appOwnership.equals("standalone")) {
int clientIdIdentifier =
context
.getResources()
.getIdentifier(
"default_web_client_id", "string", context.getPackageName());
if (clientIdIdentifier != 0) {
optionsBuilder.requestIdToken(context.getString(clientIdIdentifier));
}
} else if (!isNullOrEmpty(webClientId)) {
optionsBuilder.requestIdToken(webClientId);
if (isOfflineEnabled) {
optionsBuilder.requestServerAuthCode(webClientId, isPromptEnabled);
}
}
for (String scope : scopes) {
optionsBuilder.requestScopes(new Scope(scope));
}
if (!isNullOrEmpty(hostedDomain)) {
optionsBuilder.setHostedDomain(hostedDomain);
}
if (!isNullOrEmpty(accountName)) {
optionsBuilder.setAccountName(accountName);
}
return optionsBuilder.build();
}
public static int getExceptionCode(@NonNull Task<Void> task) {
Exception e = task.getException();
if (e instanceof ApiException) {
ApiException exception = (ApiException) e;
return exception.getStatusCode();
}
return CommonStatusCodes.INTERNAL_ERROR;
}
}
| [
"tsapeta@users.noreply.github.com"
] | tsapeta@users.noreply.github.com |
7f6d6a56e00e3310c1f6f0d3a31d66f8c6f9714c | cc1460322bfeb1f77b64eda32540bbf255bbced6 | /Insert node at the tale/src/Solution.java | cef505448ec23afdfa627389446d0fc38091618a | [] | no_license | SezerSadula/HackerRank-Solutions-Java | 20048d57f652b871d052772e3d334c0911be9b49 | 652acc15fa6656d2d8aec45f30051a7e32317ad6 | refs/heads/master | 2020-04-15T22:32:29.298008 | 2019-01-10T14:44:37 | 2019-01-10T14:44:37 | 165,076,337 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,489 | java | import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
public class Solution {
static class SinglyLinkedListNode {
public int data;
public SinglyLinkedListNode next;
public SinglyLinkedListNode(int nodeData) {
this.data = nodeData;
this.next = null;
}
}
static class SinglyLinkedList {
public SinglyLinkedListNode head;
public SinglyLinkedList() {
this.head = null;
}
}
public static void printSinglyLinkedList(SinglyLinkedListNode node, String sep, BufferedWriter bufferedWriter) throws IOException {
while (node != null) {
bufferedWriter.write(String.valueOf(node.data));
node = node.next;
if (node != null) {
bufferedWriter.write(sep);
}
}
}
// Complete the insertNodeAtTail function below.
/*
* For your reference:
*
* SinglyLinkedListNode {
* int data;
* SinglyLinkedListNode next;
* }
*
*/
static SinglyLinkedListNode insertNodeAtTail(SinglyLinkedListNode head, int data) {
SinglyLinkedListNode listNode = new SinglyLinkedListNode(data);
if (head == null) {
return listNode;
} else {
SinglyLinkedListNode node = head;
while (node.next != null) {
node = node.next;
}
node.next = new SinglyLinkedListNode(data);
return head;
}
}
private static final Scanner scanner = new Scanner(System.in);
public static void main(String[] args) throws IOException {
BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));
SinglyLinkedList llist = new SinglyLinkedList();
int llistCount = scanner.nextInt();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
for (int i = 0; i < llistCount; i++) {
int llistItem = scanner.nextInt();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
SinglyLinkedListNode llist_head = insertNodeAtTail(llist.head, llistItem);
llist.head = llist_head;
}
printSinglyLinkedList(llist.head, "\n", bufferedWriter);
bufferedWriter.newLine();
bufferedWriter.close();
scanner.close();
}
}
| [
"sezersadula@gmail.com"
] | sezersadula@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.