blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
listlengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9b215977e7f7097640048c51a49638401bcff772
|
50b1ebb57dac9221915d563eae372a3337ae2ad0
|
/src/main/java/pugz/omni/common/world/feature/placers/PaloVerdeTrunkPlacer.java
|
bfa0868f81d0afe2b9d993692e2534eeb3bea4f5
|
[
"MIT"
] |
permissive
|
wchen1990/Omni
|
52f1c41b0c942a504219e8e312e61066d8b1fdc5
|
4d40caa1e9a9f5fa377ad43858dcc9feca32b13f
|
refs/heads/main
| 2023-02-08T20:56:58.965316 | 2021-01-04T04:44:08 | 2021-01-04T04:44:08 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,393 |
java
|
package pugz.omni.common.world.feature.placers;
import com.google.common.collect.Lists;
import com.mojang.serialization.Codec;
import com.mojang.serialization.codecs.RecordCodecBuilder;
import net.minecraft.util.Direction;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MutableBoundingBox;
import net.minecraft.world.gen.IWorldGenerationReader;
import net.minecraft.world.gen.feature.BaseTreeFeatureConfig;
import net.minecraft.world.gen.foliageplacer.FoliagePlacer;
import net.minecraft.world.gen.trunkplacer.AbstractTrunkPlacer;
import net.minecraft.world.gen.trunkplacer.TrunkPlacerType;
import pugz.omni.core.registry.OmniFeatures;
import javax.annotation.Nonnull;
import java.util.List;
import java.util.Random;
import java.util.Set;
public class PaloVerdeTrunkPlacer extends AbstractTrunkPlacer {
public static final Codec<PaloVerdeTrunkPlacer> CODEC = RecordCodecBuilder.create((p_236883_0_) -> {
return func_236915_a_(p_236883_0_).apply(p_236883_0_, PaloVerdeTrunkPlacer::new);
});
public PaloVerdeTrunkPlacer(int baseHeight, int p_i232053_2_, int p_i232053_3_) {
super(baseHeight, p_i232053_2_, p_i232053_3_);
}
@Nonnull
protected TrunkPlacerType<?> func_230381_a_() {
return OmniFeatures.Placers.PALO_VERDE_TRUNK_PLACER;
}
@Nonnull
public List<FoliagePlacer.Foliage> func_230382_a_(IWorldGenerationReader world, Random random, int p_230382_3_, BlockPos pos, Set<BlockPos> p_230382_5_, MutableBoundingBox boundingBox, BaseTreeFeatureConfig config) {
func_236909_a_(world, pos.down());
List<FoliagePlacer.Foliage> list = Lists.newArrayList();
Direction direction = Direction.Plane.HORIZONTAL.random(random);
int i = p_230382_3_ - random.nextInt(3) - 1;
int j = 3 - random.nextInt(3);
BlockPos.Mutable blockpos$mutable = new BlockPos.Mutable();
int k = pos.getX();
int l = pos.getZ();
int i1 = 0;
for(int j1 = 0; j1 < p_230382_3_; ++j1) {
int k1 = pos.getY() + j1;
if (j1 >= i && j > 0) {
k += direction.getXOffset();
l += direction.getZOffset();
--j;
}
if (func_236911_a_(world, random, blockpos$mutable.setPos(k, k1, l), p_230382_5_, boundingBox, config)) {
i1 = k1 + 1;
}
}
list.add(new FoliagePlacer.Foliage(new BlockPos(k, i1, l), 1, false));
k = pos.getX();
l = pos.getZ();
Direction direction1 = Direction.Plane.HORIZONTAL.random(random);
if (direction1 != direction) {
int k2 = i - random.nextInt(2) - 1;
int l1 = 1 + random.nextInt(3);
i1 = 0;
for(int i2 = k2; i2 < p_230382_3_ && l1 > 0; --l1) {
if (i2 >= 1) {
int j2 = pos.getY() + i2;
k += direction1.getXOffset();
l += direction1.getZOffset();
if (func_236911_a_(world, random, blockpos$mutable.setPos(k, j2, l), p_230382_5_, boundingBox, config)) {
i1 = j2 + 1;
}
}
++i2;
}
if (i1 > 1) {
list.add(new FoliagePlacer.Foliage(new BlockPos(k, i1, l), 0, false));
}
}
return list;
}
}
|
[
"[email protected]"
] | |
7eb1801cc446e7b041c890c3ed0df79e6a9ae50f
|
0b22831ab50f09d398fb032ad0970662d74e7172
|
/distribute/distribute-main/src/main/java/gov/nasa/podaac/distribute/echo/ECHOCollectionFile.java
|
e99fe117ab5ef0fe5825a1a516c7f20067a2b74f
|
[
"Apache-2.0"
] |
permissive
|
dataplumber/dmas
|
3b160cdecfbd32e3335088dd6bf27fa1463be666
|
34f3da0e71df5b2dd6b47b30687dd5438ca05435
|
refs/heads/master
| 2022-12-06T02:33:25.448859 | 2016-03-10T22:18:56 | 2016-03-10T22:18:56 | 53,535,203 | 2 | 0 |
Apache-2.0
| 2022-12-05T23:29:25 | 2016-03-09T22:04:14 |
JavaScript
|
UTF-8
|
Java
| false | false | 28,781 |
java
|
//Copyright 2008, by the California Institute of Technology.
//ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged.
package gov.nasa.podaac.distribute.echo;
import gov.nasa.podaac.distribute.common.DistributeValidationEventHandler;
import gov.nasa.podaac.distribute.common.FTP;
import gov.nasa.podaac.distribute.common.Query;
import gov.nasa.podaac.distribute.common.QueryFactory;
import gov.nasa.podaac.distribute.common.TimeConversion;
import gov.nasa.podaac.distribute.common.URL;
import gov.nasa.podaac.distribute.echo.jaxb.collection.Boundary;
import gov.nasa.podaac.distribute.echo.jaxb.collection.BoundingRectangle;
import gov.nasa.podaac.distribute.echo.jaxb.collection.Collection;
import gov.nasa.podaac.distribute.echo.jaxb.collection.CollectionMetaDataFile;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ContactPerson;
import gov.nasa.podaac.distribute.echo.jaxb.collection.CoordinateSystem;
import gov.nasa.podaac.distribute.echo.jaxb.collection.Geometry;
import gov.nasa.podaac.distribute.echo.jaxb.collection.GranuleSpatialRepresentation;
import gov.nasa.podaac.distribute.echo.jaxb.collection.HorizontalSpatialDomain;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ScienceKeyword;
import gov.nasa.podaac.distribute.echo.jaxb.collection.Instrument;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfCollections;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfContactPersons;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfContacts;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfScienceKeywords;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfEmails;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfInstruments;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfKeywords;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfOnlineAccessURLs;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfOnlineResources;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfPhones;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfPlatforms;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ListOfSensors;
import gov.nasa.podaac.distribute.echo.jaxb.collection.ObjectFactory;
import gov.nasa.podaac.distribute.echo.jaxb.collection.OnlineAccessURL;
import gov.nasa.podaac.distribute.echo.jaxb.collection.OnlineResource;
import gov.nasa.podaac.distribute.echo.jaxb.collection.Phone;
import gov.nasa.podaac.distribute.echo.jaxb.collection.Platform;
import gov.nasa.podaac.distribute.echo.jaxb.collection.RangeDateTime;
import gov.nasa.podaac.distribute.echo.jaxb.collection.Spatial;
import gov.nasa.podaac.distribute.echo.jaxb.collection.Temporal;
import gov.nasa.podaac.distribute.echo.jaxb.collection.VariableLevel1Keyword;
import gov.nasa.podaac.inventory.api.Constant.LocationPolicyType;
import gov.nasa.podaac.inventory.model.Dataset;
import gov.nasa.podaac.inventory.model.DatasetContact;
import gov.nasa.podaac.inventory.model.DatasetCoverage;
import gov.nasa.podaac.inventory.model.DatasetLocationPolicy;
import gov.nasa.podaac.inventory.model.DatasetMetaHistory;
import gov.nasa.podaac.inventory.model.DatasetParameter;
import gov.nasa.podaac.inventory.model.DatasetRegion;
import gov.nasa.podaac.inventory.model.DatasetResource;
import gov.nasa.podaac.inventory.model.DatasetSource;
import gov.nasa.podaac.inventory.model.DatasetVersion;
import gov.nasa.podaac.inventory.model.Source;
import java.io.File;
import java.io.StringWriter;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.transform.dom.DOMResult;
import javax.xml.validation.Schema;
import javax.xml.validation.SchemaFactory;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.xml.sax.SAXException;
/**
* This class contains ECHO colletion object.
*
* @author clwong
*
* @version
* $Id: ECHOCollectionFile.java 14484 2015-11-25 00:18:25Z gangl $
*/
public class ECHOCollectionFile {
private static Log log = LogFactory.getLog(ECHOCollectionFile.class);
private String datasetId = null;
private Dataset dataset = null;
private String echoCollectionFilename = null;
private Schema schema = null;
private boolean rangeIs360 = false;
private boolean toCMR = true;
private Query q = QueryFactory.getInstance().createQuery();
private gov.nasa.podaac.distribute.echo.jaxb.collection.Collection echoCollection = null;
public ECHOCollectionFile() {
init();
}
public ECHOCollectionFile(String datasetId) {
this.datasetId = datasetId;
this.dataset = q.fetchDataset(datasetId);
init();
}
public ECHOCollectionFile(Dataset dataset) {
this.datasetId = dataset.getPersistentId();
this.dataset = dataset;
init();
}
public void init() {
SchemaFactory schemaFactory = SchemaFactory
.newInstance(javax.xml.XMLConstants.W3C_XML_SCHEMA_NS_URI);
try {
this.schema = schemaFactory.newSchema(new File(System
.getProperty("distribute.schemas")
+ "/Collection.xsd"));
} catch (SAXException e) {
}
}
public static Geometry genBoundingBox(boolean rangeIs360, double east, double west, double north, double south ){
Geometry boundingBox = new Geometry();
BoundingRectangle br = new BoundingRectangle();
BoundingRectangle br2;
if(rangeIs360)
{
BigDecimal bdeast = convertBoundingVal(east,true);
BigDecimal bdwest = convertBoundingVal(west,true);
/*
* If special case for 0 and 360
*/
//System.out.println("EAST " + east);
//System.out.println("WEST " + west);
if(east == 360d && west==0d){
//System.out.println("**** SPCIAL CASE ****");
br.setWestBoundingCoordinate(new BigDecimal(-180));
br.setEastBoundingCoordinate(new BigDecimal(180));
//don't need to convert the lat ones, they are all in the -90/90 range
br.setNorthBoundingCoordinate(new BigDecimal(north));
br.setSouthBoundingCoordinate(new BigDecimal(south));
boundingBox.getPointOrBoundingRectangleOrGPolygon().add(br);
return boundingBox;
}
if(bdeast.compareTo(bdwest) == 1){
br.setWestBoundingCoordinate(convertBoundingVal(west, true));
br.setEastBoundingCoordinate(convertBoundingVal(east, true));
//don't need to convert the lat ones, they are all in the -90/90 range
br.setNorthBoundingCoordinate(new BigDecimal(north));
br.setSouthBoundingCoordinate(new BigDecimal(south));
boundingBox.getPointOrBoundingRectangleOrGPolygon().add(br);
}
else{
log.debug("East Longitude is less than West Longitude: separating bounding boxes.");
br2 = new BoundingRectangle();
if(bdwest.compareTo(BigDecimal.valueOf(180)) != 0){
br.setWestBoundingCoordinate(convertBoundingVal(west, true));
br.setEastBoundingCoordinate(BigDecimal.valueOf(180));
br.setNorthBoundingCoordinate(BigDecimal.valueOf(north));
br.setSouthBoundingCoordinate(BigDecimal.valueOf(south));
boundingBox.getPointOrBoundingRectangleOrGPolygon().add(br);
}
br2.setWestBoundingCoordinate(BigDecimal.valueOf(-180));
br2.setEastBoundingCoordinate(convertBoundingVal(east, true));
br2.setNorthBoundingCoordinate(BigDecimal.valueOf(north));
br2.setSouthBoundingCoordinate(BigDecimal.valueOf(south));
boundingBox.getPointOrBoundingRectangleOrGPolygon().add(br2);
}
}
else{
if(east >= west){
br.setWestBoundingCoordinate(BigDecimal.valueOf(west));
br.setEastBoundingCoordinate(BigDecimal.valueOf(east));
//don't need to convert the lat ones, they are all in the -90/90 range
br.setNorthBoundingCoordinate(new BigDecimal(north));
br.setSouthBoundingCoordinate(new BigDecimal(south));
boundingBox.getPointOrBoundingRectangleOrGPolygon().add(br);
}
else{
log.debug("East Longitude is less than West Longitude: separating bounding boxes.");
br2 = new BoundingRectangle();
if(west != 180d){
br.setWestBoundingCoordinate(BigDecimal.valueOf(west));
br.setEastBoundingCoordinate(BigDecimal.valueOf(180));
br.setNorthBoundingCoordinate(BigDecimal.valueOf(north));
br.setSouthBoundingCoordinate(BigDecimal.valueOf(south));
boundingBox.getPointOrBoundingRectangleOrGPolygon().add(br);
}
if(east != -180d){
br2.setWestBoundingCoordinate(BigDecimal.valueOf(-180));
br2.setEastBoundingCoordinate(BigDecimal.valueOf(east));
br2.setNorthBoundingCoordinate(BigDecimal.valueOf(north));
br2.setSouthBoundingCoordinate(BigDecimal.valueOf(south));
boundingBox.getPointOrBoundingRectangleOrGPolygon().add(br2);
}
}
}
return boundingBox;
}
public void export() {
if (dataset!=null) export(dataset);
else if (datasetId!=null) export(datasetId);
else log.error("Unspecified collection!");
}
public void export(String datasetId) {
this.datasetId = datasetId;
export(q.fetchDataset(datasetId));
}
public static String maxLengthString(String in, int max ){
return in.substring(0,(Math.min(max, in.length())));
}
public void export(Dataset dataset) {
log.info("Collection["+datasetId+"] has Collection.product.visibile_flag: " + dataset.getDatasetPolicy().getViewOnline());
if(dataset.getDatasetPolicy().getViewOnline().equals('N'))
{
log.info("Collection["+datasetId+"] has Dataset.Coverage.visibile_flag set to 'N'. Skipping collection export.");
return;
}
ListOfCollections echoCollections = new ListOfCollections();
log.debug("is360: " + dataset.getDatasetCoverage().getGranuleRange360());
if(dataset.getDatasetCoverage().getGranuleRange360().equals('Y')){
rangeIs360 = true;
}
log.info("Process collectionId="+datasetId+" & datasetId="+dataset.getDatasetId());
// Populate the collection information.
echoCollection =
new gov.nasa.podaac.distribute.echo.jaxb.collection.Collection();
echoCollection.setDataSetId(dataset.getPersistentId());
echoCollection.setShortName(dataset.getShortName().toUpperCase());
echoCollection.setLongName(dataset.getLongName());
echoCollection.setArchiveCenter("PO.DAAC");
String description = dataset.getDescription();
if ((description!=null) && (!description.equalsIgnoreCase("TBD")))
echoCollection.setDescription(dataset.getDescription());
else log.warn("Dataset Description TBD!");
echoCollection.setVisible(true);
echoCollection.setRevisionDate(TimeConversion.currentDate());
String processingCenter = dataset.getOriginalProvider();
echoCollection.setProcessingCenter( maxLengthString(processingCenter, 80));
echoCollection.setProcessingLevelId(dataset.getProcessingLevel());
echoCollection.setDataFormat(dataset.getDatasetPolicy().getDataFormat());
// Populate creation & revision dates
Set<DatasetMetaHistory> historySet = dataset.getMetaHistorySet();
List<Date> createDates = new ArrayList<Date>();
List<Date> revisionDates = new ArrayList<Date>();
for(DatasetMetaHistory history : historySet) {
log.debug("History - Creation: " + history.getCreationDateLong());
log.debug("History - LastRevDate: " + history.getLastRevisionDateLong());
createDates.add(history.getCreationDate());
revisionDates.add(history.getLastRevisionDate());
}
echoCollection.setInsertTime(TimeConversion.convertDate(Collections.min(createDates)));
echoCollection.setLastUpdate(TimeConversion.convertDate(Collections.max(revisionDates)));
// Populate the version information.
try{
echoCollection.setVersionId(
exportVersion(dataset.getVersionSet())
);
}catch(Exception e)
{
log.info("skipping dataset " + dataset.getDatasetId());
}
echoCollection.setDataSetId(datasetId);
// Populate Spatial & Temporal metadata
echoCollection.setSpatialKeywords(
exportSpatial(dataset)
);
echoCollection.setTemporal(
exportTemporal(dataset.getDatasetCoverage())
);
echoCollection.setSpatial(
exportSpatialVals(dataset)
);
// Populate the contact information.
echoCollection.setContacts(
exportContact(dataset.getContactSet())
);
// Populate the parameter information.
echoCollection.setScienceKeywords(
exportParameter(dataset.getParameterSet())
);
// Populate the platform information.
echoCollection.setPlatforms(
exportPlatform(dataset.getSourceSet())
);
// Populate the resource information.
echoCollection.setOnlineAccessURLs(
exportAccessURL(dataset.getLocationPolicySet())
);
// Populate the resource information.
echoCollection.setOnlineResources(
exportResource(dataset.getResourceSet())
);
if (!validate(echoCollection)){
log.error("ERROR VALIDATING ECHO COLLECTION");
}
}
private static BigDecimal convertBoundingVal(double val, boolean lon)
{
double convertedVal = 0;
if(lon)
{
if(val > 180)
convertedVal = val - 360;
else
convertedVal = val;
}
else
{
if(val > 90)
convertedVal =val-90;
else if(val < -90)
convertedVal =val+90;
else
convertedVal = val;
}
if(val != convertedVal)
log.warn("Collection has longitude range of 0-360. Performing Automated conversion to -180/180 range. Converted value ["+val+"] to ["+convertedVal+"]");
return BigDecimal.valueOf(convertedVal);
}
public Spatial exportSpatialVals(Dataset d) {
//create HorizontalSpatialDomain
HorizontalSpatialDomain hsd = new HorizontalSpatialDomain();
//create geometry/BoundingBox
Geometry geo = new Geometry();
//Boundary b = new Boundary();
//add ponts to the lsit for a spatial object
double west = d.getDatasetCoverage().getWestLon();
double east = d.getDatasetCoverage().getEastLon();
double north= d.getDatasetCoverage().getNorthLat();
double south=d.getDatasetCoverage().getSouthLat();
geo = genBoundingBox(rangeIs360,east,west,north,south);
geo.setCoordinateSystem(CoordinateSystem.CARTESIAN);
hsd.setGeometry(geo);
hsd.setZoneIdentifier(null);
//create spatial
Spatial sp = new Spatial();
//add these items to the SPATIAL type
sp.setSpatialCoverageType("HORIZONTAL");
sp.setGranuleSpatialRepresentation(GranuleSpatialRepresentation.CARTESIAN);
sp.setHorizontalSpatialDomain(hsd);
return sp;
}
public boolean validate (gov.nasa.podaac.distribute.echo.jaxb.collection.Collection echoCollection) {
try {
JAXBContext jc = JAXBContext
.newInstance("gov.nasa.podaac.distribute.echo.jaxb.collection");
JAXBElement<gov.nasa.podaac.distribute.echo.jaxb.collection.Collection> element = (new ObjectFactory())
.createCollection(echoCollection);
Marshaller m = jc.createMarshaller();
if (this.schema==null) return false;
log.debug("Marshalling schema.");
m.setSchema(this.schema);
m.setEventHandler(new DistributeValidationEventHandler());
DOMResult result = new DOMResult();
m.marshal( element, result );
return true;
} catch (JAXBException e) {
e.printStackTrace();
log.error("Invalid Collection Object:\n"+e.getMessage());
}
return false;
}
public boolean validate() {
return validate(echoCollectionFilename);
}
public boolean validate(String filename) {
if (validateXML(filename)) {
if (verifyURLs()) return true;
}
return false;
}
public boolean verifyURLs() {
boolean status = true;
List<OnlineAccessURL> urls = echoCollection.getOnlineAccessURLs().getOnlineAccessURL();
for (OnlineAccessURL url : urls) {
if (!URL.verify(url.getURL())) status = false;
}
return status;
}
public boolean validateXML(String filename) {
JAXBContext context;
try {
context = JAXBContext
.newInstance("gov.nasa.podaac.distribute.echo.jaxb.collection");
Unmarshaller unmarshaller = context.createUnmarshaller();
if (this.schema==null) return false;
unmarshaller.setSchema(this.schema);
unmarshaller.setEventHandler(new DistributeValidationEventHandler());
echoCollection = (gov.nasa.podaac.distribute.echo.jaxb.collection.Collection)
((JAXBElement)unmarshaller.unmarshal(new File(filename))).getValue();
echoCollectionFilename = filename;
return true;
} catch (Exception e) {
log.error("Non-ECHO-Collection File:\n"+e.getMessage());
return false;
}
}
/**
* Create the XML representation of the ECHO Collection submission.
*/
public boolean toXmlFile() {
try{
if (echoCollection == null) return false;
}catch(NullPointerException npe)
{
log.info("No collections to output. Not outputting to XML.");
return false;
}
String filename = System.getProperty("distribute.data.location")
+"/podaac-echo-collection-" + datasetId + ".xml";
File outputFile = new File(filename);
try {
JAXBContext jc = JAXBContext
.newInstance("gov.nasa.podaac.distribute.echo.jaxb.collection");
JAXBElement<gov.nasa.podaac.distribute.echo.jaxb.collection.Collection> coElement = (new ObjectFactory()).createCollection(echoCollection);
//.createCollectionMetaDataFile(echoCollection);
Marshaller m = jc.createMarshaller();
// validation
if (this.schema==null) return false;
m.setSchema(this.schema);
m.setEventHandler(new DistributeValidationEventHandler());
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
m.marshal(coElement, outputFile);
echoCollectionFilename = filename;
return true;
} catch (JAXBException je) {
log.error("toXMLFile:"+je.getMessage());
} catch (Exception e) {
log.error("toXMLFile:"+e.getMessage());
}
if (outputFile.exists()) outputFile.delete();
return false;
}
public String toXML(){
try{
JAXBContext jc = JAXBContext
.newInstance("gov.nasa.podaac.distribute.echo.jaxb.collection");
JAXBElement<gov.nasa.podaac.distribute.echo.jaxb.collection.Collection> coElement = (new ObjectFactory()).createCollection(echoCollection);
//.createCollectionMetaDataFile(echoCollection);
Marshaller m = jc.createMarshaller();
// validation
if (this.schema==null) return null;
m.setSchema(this.schema);
m.setEventHandler(new DistributeValidationEventHandler());
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
StringWriter sw = new StringWriter();
m.marshal(coElement, sw);
return sw.toString();
} catch (JAXBException je) {
log.error("toXMLFile:"+je.getMessage());
} catch (Exception e) {
log.error("toXMLFile:"+e.getMessage());
}
return null;
}
private String exportVersion(Set<DatasetVersion> versionSet) throws Exception {
List<Integer> versionIds = new ArrayList<Integer>();
for (DatasetVersion version : versionSet)
versionIds.add(version.getDatasetVersionPK().getVersionId());
if(versionIds.isEmpty())
{
log.info("No version records associated with this dataset.");
log.warn("No version record, default value of \"1\" used,");
//throw new Exception("No version associated");
return "1";
}
return String.valueOf(Collections.max(versionIds));
}
// Populate the spatial metadata
private ListOfKeywords exportSpatial(Dataset dataset) {
ListOfKeywords echoSpatialKeywords = new ListOfKeywords();
for(DatasetRegion dr : dataset.getRegionSet()){
echoSpatialKeywords.getKeyword().add(dr.getRegion());
}
return echoSpatialKeywords;
}
// Populate the temporal metadata
private Temporal exportTemporal(DatasetCoverage coverage) {
Temporal echoTemporal = new Temporal();
RangeDateTime echoRange = new RangeDateTime();
echoRange.setBeginningDateTime(TimeConversion.convertDate(coverage.getStartTime()));
echoRange.setEndingDateTime(TimeConversion.convertDate(coverage.getStopTime()));
echoTemporal.getRangeDateTime().add(echoRange);
return echoTemporal;
}
// Populate the contact information.
private ListOfContacts exportContact(Set<DatasetContact> DatasetContactSet) {
ListOfContacts echoContacts = new ListOfContacts();
for (DatasetContact collectionContact : DatasetContactSet) {
gov.nasa.podaac.inventory.model.Contact contact =
collectionContact.getDatasetContactPK().getContact();
String providerLongname = null;
String[] depends = {"provider"};
contact = q.fetchContact(contact.getContactId(), depends);
//contact = q.fetchContact(contact.getContactId());
providerLongname = contact.getProvider().getLongName();
gov.nasa.podaac.distribute.echo.jaxb.collection.Contact echoContact =
new gov.nasa.podaac.distribute.echo.jaxb.collection.Contact();
echoContact.setRole("Archiver");
echoContact.setOrganizationName(providerLongname);
ListOfPhones echoPhones = new ListOfPhones();
Phone echoPhone = new Phone();
echoPhone.setNumber(contact.getPhone());
echoPhone.setType("Primary");
echoPhones.getPhone().add(echoPhone);
echoContact.setOrganizationPhones(echoPhones);
ListOfEmails echoEmail = new ListOfEmails();
echoEmail.getEmail().add(contact.getEmail());
echoContact.setOrganizationEmails(echoEmail);
ListOfContactPersons echoPersons = new ListOfContactPersons();
ContactPerson echoPerson = new ContactPerson();
echoPerson.setFirstName(contact.getFirstName());
if(contact.getMiddleName() != null)
echoPerson.setMiddleName(contact.getMiddleName());
echoPerson.setLastName(contact.getLastName());
echoPerson.setJobPosition(contact.getRole());
echoPersons.getContactPerson().add(echoPerson);
echoContact.setContactPersons(echoPersons);
echoContacts.getContact().add(echoContact);
}
return echoContacts;
}
// Populate the parameter information.
private ListOfScienceKeywords exportParameter(Set<DatasetParameter> parameterSet) {
ListOfScienceKeywords echoParameters = new ListOfScienceKeywords();
for (DatasetParameter parameter : parameterSet) {
ScienceKeyword echoParameter = new ScienceKeyword();
echoParameter.setCategoryKeyword(parameter.getCategory());
echoParameter.setTopicKeyword(parameter.getTopic());
echoParameter.setTermKeyword(parameter.getTerm());
VariableLevel1Keyword var = new VariableLevel1Keyword();
var.setValue(parameter.getVariable());
echoParameter.setVariableLevel1Keyword(var);
echoParameter.setDetailedVariableKeyword(parameter.getVariableDetail());
//echoParameter.setVariableLevel1Keyword(value);
echoParameters.getScienceKeyword().add(echoParameter);
//echoParameters.getDisciplineTopicParameter().add(echoParameter);
}
return echoParameters;
}
// Populate the platform information.
private ListOfPlatforms exportPlatform(Set<DatasetSource> datasetSourceSet) {
ListOfPlatforms echoPlatforms = new ListOfPlatforms();
Set<String> addedSources = new HashSet<String>(); //to store the shortnames of added sources
for (DatasetSource datasetSource : datasetSourceSet) {
Source source = datasetSource.getDatasetSourcePK().getSource();
boolean update = false;
gov.nasa.podaac.inventory.model.Sensor sensor =
datasetSource.getDatasetSourcePK().getSensor();
Platform echoPlatform = null;
if(addedSources.contains(source.getSourceShortName()))
{
log.debug("Source ["+source.getSourceShortName()+"] already added, finding and updating.");
for(Platform p: echoPlatforms.getPlatform()){
if(p.getShortName().equals(source.getSourceShortName()))
{
log.debug("Platform ["+source.getSourceShortName()+"] found, setting to current.");
echoPlatform = p;
update = true;
break;
}
}
}
else{
log.debug("Source ["+source.getSourceShortName()+"] is a new source.");
echoPlatform = new Platform();
}
echoPlatform.setShortName(source.getSourceShortName());
String longName = source.getSourceLongName();
if (longName==null){
log.warn("Instrument(source) long_name is null. Using source short_name instead. See source.long_name with id=" + source.getSourceId());
echoPlatform.setLongName(source.getSourceShortName());
}
else
echoPlatform.setLongName(source.getSourceLongName());
if(source.getSourceType()==null)
{
log.warn("Instrument(source) type is null. Using sensor short_name instead. See source.type with id=" + sensor.getSensorId());
echoPlatform.setType("unknown");
}
else
echoPlatform.setType(source.getSourceType());
ListOfInstruments echoInstruments = new ListOfInstruments();
if(echoPlatform.getInstruments()!=null)
echoInstruments.getInstrument().addAll(echoPlatform.getInstruments().getInstrument());
// only one instrument
Instrument echoInstrument = new Instrument();
echoInstrument.setShortName(sensor.getSensorShortName());
if(sensor.getSensorLongName()==null)
{
log.warn("Instrument(sensor) long_name is null. Using sensor short_name instead. See SENSOR.long_name with id=" + sensor.getSensorId());
echoInstrument.setLongName(sensor.getSensorShortName());
}
else
echoInstrument.setLongName(sensor.getSensorLongName());
ListOfSensors echoSensors = new ListOfSensors();
// only one sensor
gov.nasa.podaac.distribute.echo.jaxb.collection.Sensor echoSensor =
new gov.nasa.podaac.distribute.echo.jaxb.collection.Sensor();
echoSensor.setShortName(sensor.getSensorShortName());
echoSensor.setLongName(sensor.getSensorLongName());
echoSensors.getSensor().add(echoSensor);
echoInstrument.setSensors(echoSensors);
echoInstruments.getInstrument().add(echoInstrument);
echoPlatform.setInstruments(echoInstruments);
addedSources.add(source.getSourceShortName());
if(!update)
echoPlatforms.getPlatform().add(echoPlatform);
}
return echoPlatforms;
}
// Populate the online access information.
private ListOfOnlineAccessURLs exportAccessURL(Set<DatasetLocationPolicy> locationSet) {
ListOfOnlineAccessURLs echoAccessURLs = new ListOfOnlineAccessURLs();
HashSet<String> accessURLs = new HashSet<String>();
for (DatasetLocationPolicy location : locationSet) {
String type = location.getType();
if (!type.startsWith(LocationPolicyType.ARCHIVE.toString())) {
if(accessURLs.add(location.getBasePath())){
OnlineAccessURL echoAccessURL = new OnlineAccessURL();
echoAccessURL.setURL(location.getBasePath());
if (type.endsWith("FTP"))
echoAccessURL
.setURLDescription("The FTP base directory location for the collection.");
else if (type.endsWith("OPENDAP")){
echoAccessURL
.setURLDescription("The OPeNDAP base directory location for the collection.");
if(!location.getBasePath().endsWith("/")){
echoAccessURL.setURL(location.getBasePath()+"/");
}
}
else
echoAccessURL
.setURLDescription("The base directory location for the collection.");
echoAccessURLs.getOnlineAccessURL().add(echoAccessURL);
}
else{
log.info("Location Base path \""+location.getBasePath()+"\" is a non-unique entry. Not adding to Collection xml file.");
}
}
}
return echoAccessURLs;
}
// Populate the resource information.
private ListOfOnlineResources exportResource(Set<DatasetResource> datasetResourceSet) {
ListOfOnlineResources echoResources = new ListOfOnlineResources();
log.debug("dataset resource size="+datasetResourceSet.size());
for (DatasetResource resource : datasetResourceSet) {
log.debug("resPath"+resource.getResourcePath());
log.debug("resDesc"+resource.getResourceDescription());
log.debug("resType"+resource.getResourceType());
if(resource.getResourceType().toUpperCase().equals("THUMBNAIL")){
log.debug("Not adding 'thumbnail' resource to list of resources.");
continue;
}
OnlineResource echoResource = new OnlineResource();
echoResource.setURL(resource.getResourcePath());
echoResource.setDescription(resource.getResourceDescription());
echoResource.setType(resource.getResourceType());
echoResources.getOnlineResource().add(echoResource);
}
return echoResources;
}
public Dataset getDataset() {
return dataset;
}
public void setDataset(Dataset dataset) {
this.dataset = dataset;
}
public String getEchoCollectionFilename() {
return echoCollectionFilename;
}
public void setEchoCollectionFilename(String echoCollectionFilename) {
this.echoCollectionFilename = echoCollectionFilename;
}
public Schema getSchema() {
return schema;
}
public void setSchema(Schema schema) {
this.schema = schema;
}
public void setSubmit(boolean toCMR) {
this.toCMR = toCMR;
}
public Collection getCollection() {
return this.echoCollection;
}
}
|
[
"[email protected]"
] | |
d7c85beb12f2652f7068bdfb19297a8c5414c389
|
a0a44561223afc005b5b15dfc68d6d8e561aa0f4
|
/My Template/AdapterExample/TestingApplication/app/src/test/java/com/example/omarsaad/testingapplication/ExampleUnitTest.java
|
39644d124ae9bfb98e0f516e93220d28a42e06ea
|
[] |
no_license
|
mohamadayash/eWallet
|
5aa320074295ca6dd02c7184790abdcb54b540ef
|
e0a1c54130326d93374cba6391c4ce9bcaee66f4
|
refs/heads/master
| 2021-09-03T06:26:11.796888 | 2018-01-03T13:26:11 | 2018-01-03T13:26:11 | 116,138,668 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 332 |
java
|
package com.example.omarsaad.testingapplication;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* To work on unit tests, switch the Test Artifact in the Build Variants view.
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
|
[
"[email protected]"
] | |
30e083d25c720a87676f0cdd5fe51bd384deeacd
|
43f74ea498cb0dae05bf2390b448d16f398a0a2b
|
/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp4/work/Catalina/localhost/ROOT/org/apache/jsp/WEB_002dINF/views/mypage/order/include/order_payment_edit_include_jsp.java
|
356e1443e82a3a5da4b5a6eb587a1c74fad8e09a
|
[] |
no_license
|
young-hee/pc_mlb
|
2bdf5813418c14be2d7e2de78f0f294ed8264dde
|
708417eada78eed398e068460bda44adea16cbdf
|
refs/heads/master
| 2022-11-22T00:11:05.335853 | 2020-07-22T08:27:03 | 2020-07-22T09:10:07 | 281,615,442 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 477,564 |
java
|
/*
* Generated by the Jasper component of Apache Tomcat
* Version: Apache Tomcat/9.0.8
* Generated at: 2019-04-11 04:22:30 UTC
* Note: The last modified time of this file was set to
* the last modified time of the source file after
* generation to assist with modification tracking.
*/
package org.apache.jsp.WEB_002dINF.views.mypage.order.include;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
public final class order_payment_edit_include_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent,
org.apache.jasper.runtime.JspSourceImports {
private static final javax.servlet.jsp.JspFactory _jspxFactory =
javax.servlet.jsp.JspFactory.getDefaultFactory();
private static java.util.Map<java.lang.String,java.lang.Long> _jspx_dependants;
static {
_jspx_dependants = new java.util.HashMap<java.lang.String,java.lang.Long>(14);
_jspx_dependants.put("/WEB-INF/views/include/jsp-header.jspf", Long.valueOf(1528090065807L));
_jspx_dependants.put("/WEB-INF/tld/functions.tld", Long.valueOf(1527236566402L));
_jspx_dependants.put("jar:file:/C:/work/libs/jstl-1.2.jar!/META-INF/fmt.tld", Long.valueOf(1153352682000L));
_jspx_dependants.put("jar:file:/C:/work/libs/jstl-1.2.jar!/META-INF/c-1_0-rt.tld", Long.valueOf(1153352682000L));
_jspx_dependants.put("jar:file:/C:/work/libs/spring-security-taglibs-4.0.0.RELEASE.jar!/META-INF/security.tld", Long.valueOf(1427282480000L));
_jspx_dependants.put("jar:file:/C:/work/libs/tiles-jsp-3.0.5.jar!/META-INF/tld/tiles-jsp.tld", Long.valueOf(1411309932000L));
_jspx_dependants.put("jar:file:/C:/work/libs/spring-webmvc-4.1.6.RELEASE.jar!/META-INF/spring-form.tld", Long.valueOf(1427241226000L));
_jspx_dependants.put("jar:file:/C:/work/libs/spring-webmvc-4.1.6.RELEASE.jar!/META-INF/spring.tld", Long.valueOf(1427241226000L));
_jspx_dependants.put("/WEB-INF/lib/spring-security-taglibs-4.0.0.RELEASE.jar", Long.valueOf(1526264865197L));
_jspx_dependants.put("/WEB-INF/lib/spring-webmvc-4.1.6.RELEASE.jar", Long.valueOf(1526264955085L));
_jspx_dependants.put("/WEB-INF/lib/tiles-jsp-3.0.5.jar", Long.valueOf(1526264975933L));
_jspx_dependants.put("jar:file:/C:/work/libs/jstl-1.2.jar!/META-INF/fn.tld", Long.valueOf(1153352682000L));
_jspx_dependants.put("/WEB-INF/lib/jstl-1.2.jar", Long.valueOf(1526264945904L));
_jspx_dependants.put("/WEB-INF/tld/taglib.tld", Long.valueOf(1527236566402L));
}
private static final java.util.Set<java.lang.String> _jspx_imports_packages;
private static final java.util.Set<java.lang.String> _jspx_imports_classes;
static {
_jspx_imports_packages = new java.util.HashSet<>();
_jspx_imports_packages.add("javax.servlet");
_jspx_imports_packages.add("javax.servlet.http");
_jspx_imports_packages.add("javax.servlet.jsp");
_jspx_imports_classes = null;
}
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fchoose;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005ffmt_005fformatNumber_0026_005fvalue_005fpattern_005fnobody;
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fif_0026_005ftest;
private volatile javax.el.ExpressionFactory _el_expressionfactory;
private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager;
public java.util.Map<java.lang.String,java.lang.Long> getDependants() {
return _jspx_dependants;
}
public java.util.Set<java.lang.String> getPackageImports() {
return _jspx_imports_packages;
}
public java.util.Set<java.lang.String> getClassImports() {
return _jspx_imports_classes;
}
public javax.el.ExpressionFactory _jsp_getExpressionFactory() {
if (_el_expressionfactory == null) {
synchronized (this) {
if (_el_expressionfactory == null) {
_el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory();
}
}
}
return _el_expressionfactory;
}
public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() {
if (_jsp_instancemanager == null) {
synchronized (this) {
if (_jsp_instancemanager == null) {
_jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig());
}
}
}
return _jsp_instancemanager;
}
public void _jspInit() {
_005fjspx_005ftagPool_005fc_005fchoose = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005ffmt_005fformatNumber_0026_005fvalue_005fpattern_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
}
public void _jspDestroy() {
_005fjspx_005ftagPool_005fc_005fchoose.release();
_005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest.release();
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.release();
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.release();
_005fjspx_005ftagPool_005ffmt_005fformatNumber_0026_005fvalue_005fpattern_005fnobody.release();
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.release();
}
public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response)
throws java.io.IOException, javax.servlet.ServletException {
if (!javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) {
final java.lang.String _jspx_method = request.getMethod();
if ("OPTIONS".equals(_jspx_method)) {
response.setHeader("Allow","GET, HEAD, POST, OPTIONS");
return;
}
if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method)) {
response.setHeader("Allow","GET, HEAD, POST, OPTIONS");
response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET, POST or HEAD. Jasper also permits OPTIONS");
return;
}
}
final javax.servlet.jsp.PageContext pageContext;
final javax.servlet.ServletContext application;
final javax.servlet.ServletConfig config;
javax.servlet.jsp.JspWriter out = null;
final java.lang.Object page = this;
javax.servlet.jsp.JspWriter _jspx_out = null;
javax.servlet.jsp.PageContext _jspx_page_context = null;
try {
response.setContentType("text/html; charset=UTF-8");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, false, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
out = pageContext.getOut();
_jspx_out = out;
response.setHeader("Cache-Control", "no-store");
response.setHeader("Pragma", "no-cache");
response.setDateHeader("Expires", 0);
if (request.getProtocol().equals("HTTP/1.1")) {
response.setHeader("Cache-Control", "no-cache");
}
com.plgrim.ncp.framework.utils.JSPEnvHelper.setDomainVariables(request, pageContext);
if (_jspx_meth_c_005fchoose_005f0(_jspx_page_context))
return;
out.write("<input type=\"hidden\" id=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_csrf.parameterName}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\" name=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_csrf.parameterName}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\" value=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_csrf.token}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\"/>\r\n");
out.write("<input type=\"hidden\" id=\"ordNo\" name=\"ord.ordNo\" value=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.ordNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\"/>\r\n");
out.write("<input type=\"hidden\" id=\"chkVirPayMnCd\" name=\"ord.chkVirPayMnCd\" value=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.payMnCd}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\"/>\r\n");
out.write("<input type=\"hidden\" id=\"cstmrNm\" name=\"ord.cstmrNm\" value=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.cstmrNm}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\"/>\r\n");
out.write("\r\n");
out.write("<input type=\"hidden\" name=\"pay.pgSectCd\" id=\"pay.pgSectCd\" value=\"\"/>\r\n");
out.write("<input type=\"hidden\" name=\"naverPayApprove.paymentId\" id=\"naverPayApprove.paymentId\" value=\"\"/>\r\n");
out.write("\r\n");
out.write("<input type=\"hidden\" name=\"kcpDTO.req_tx\" \t\t\tid=\"kcpDTO.req_tx\" \t\t\tvalue=\"\"/>\r\n");
out.write("<input type=\"hidden\" name=\"kcpDTO.enc_data\" \t\tid=\"kcpDTO.enc_data\" \t\tvalue=\"\"/>\r\n");
out.write("<input type=\"hidden\" name=\"kcpDTO.enc_info\" \t\tid=\"kcpDTO.enc_info\" \t\tvalue=\"\"/>\r\n");
out.write("<input type=\"hidden\" name=\"kcpDTO.tran_cd\" \t\t\tid=\"kcpDTO.tran_cd\" \t\tvalue=\"\"/>\r\n");
out.write("<input type=\"hidden\" name=\"kcpDTO.ordr_idxx\" \t\tid=\"kcpDTO.ordr_idxx\" \t\tvalue=\"\"/>\r\n");
out.write("<input type=\"hidden\" name=\"kcpDTO.use_pay_method\" \tid=\"kcpDTO.use_pay_method\" \tvalue=\"\"/>\r\n");
out.write("\r\n");
out.write("<input type=\"hidden\" id=\"refererURL\" name=\"refererURL\" />\r\n");
out.write("\r\n");
out.write("<div class=\"webview-layer-cont\" tabindex=\"0\">\r\n");
out.write("\t<h1 class=\"webview-layer-title01\"><span>");
if (_jspx_meth_spring_005fmessage_005f0(_jspx_page_context))
return;
out.write("</span></h1>\r\n");
out.write("\t<div class=\"webview-layer-scroll-box d_layer_scroll\">\r\n");
out.write("\t\t<div class=\"webview-layer-scroll-box-cnt\">\r\n");
out.write("\t\t\t<div class=\"cont-box-wrap\">\r\n");
out.write("\t\t\t\t<div class=\"payment-webview-info\">\r\n");
out.write("\t\t\t\t\t<p class=\"payment-total\"><span>");
if (_jspx_meth_spring_005fmessage_005f1(_jspx_page_context))
return;
out.write("</span><strong><em>");
if (_jspx_meth_fmt_005fformatNumber_005f0(_jspx_page_context))
return;
out.write("</em>");
if (_jspx_meth_spring_005fmessage_005f2(_jspx_page_context))
return;
out.write("</strong></p>\r\n");
out.write("\t\t\t\t\t<h2 class=\"title02\">");
if (_jspx_meth_spring_005fmessage_005f3(_jspx_page_context))
return;
out.write("</h2>\r\n");
out.write("\t\t\t\t\t<ul class=\"payment-webview-means01\">\r\n");
out.write("\t\t\t\t\t\t<li>\r\n");
out.write("\t\t\t\t\t\t\t<span class=\"rdo-skin\" ontouchend=\"changePayMnCd('CREDT_CARD_PAY')\">\r\n");
out.write("\t\t\t\t\t\t\t\t<input type=\"radio\" id=\"rdPay01\" name=\"pay.payMnCd\" checked=\"checked\" value=\"CREDT_CARD_PAY\">\r\n");
out.write("\t\t\t\t\t\t\t\t<span>");
if (_jspx_meth_spring_005fmessage_005f4(_jspx_page_context))
return;
out.write("</span>\r\n");
out.write("\t\t\t\t\t\t\t</span><label for=\"rdPay01\">");
if (_jspx_meth_spring_005fmessage_005f5(_jspx_page_context))
return;
out.write("</label>\r\n");
out.write("\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t\t<li>\r\n");
out.write("\t\t\t\t\t\t\t<span class=\"rdo-skin\" ontouchend=\"changePayMnCd('NAVER_PAY')\">\r\n");
out.write("\t\t\t\t\t\t\t\t<input type=\"radio\" id=\"rdPay02\" name=\"pay.payMnCd\" value=\"NAVER_PAY\">\r\n");
out.write("\t\t\t\t\t\t\t\t<span>");
if (_jspx_meth_spring_005fmessage_005f6(_jspx_page_context))
return;
out.write("</span>\r\n");
out.write("\t\t\t\t\t\t\t</span><label for=\"rdPay02\">");
if (_jspx_meth_spring_005fmessage_005f7(_jspx_page_context))
return;
out.write("</label>\r\n");
out.write("\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t\t<li>\r\n");
out.write("\t\t\t\t\t\t\t<span class=\"rdo-skin\" ontouchend=\"changePayMnCd('RLTM_BNK_ACCT_PAY')\">\r\n");
out.write("\t\t\t\t\t\t\t\t<input type=\"radio\" id=\"rdPay03\" name=\"pay.payMnCd\" value=\"RLTM_BNK_ACCT_PAY\">\r\n");
out.write("\t\t\t\t\t\t\t\t<span>");
if (_jspx_meth_spring_005fmessage_005f8(_jspx_page_context))
return;
out.write("</span>\r\n");
out.write("\t\t\t\t\t\t\t</span><label for=\"rdPay03\">");
if (_jspx_meth_spring_005fmessage_005f9(_jspx_page_context))
return;
out.write("</label>\r\n");
out.write("\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t<!-- 결제수단 - 신용/체크카드 : str -->\r\n");
out.write("\t\t\t\t\t<div class=\"order-payment-content\" id=\"order-payment-content_100000000000\">\r\n");
out.write("\t\t\t\t\t\t<h4 class=\"title03\">");
if (_jspx_meth_spring_005fmessage_005f10(_jspx_page_context))
return;
out.write("</h4>\r\n");
out.write("\t\t\t\t\t\t<ul class=\"tab02 d_tab\">\r\n");
out.write("\t\t\t\t\t\t\t<li class=\"on\" onclick=\"changeCardInfo(this, 'btnCard1_layer');return false;\"><a href=\"#\"><span>");
if (_jspx_meth_spring_005fmessage_005f11(_jspx_page_context))
return;
out.write("</span></a></li>\r\n");
out.write("\t\t\t\t\t\t\t<li onclick=\"changeCardInfo(this, 'btnCard2_layer');return false;\"><a href=\"#\"><span>");
if (_jspx_meth_spring_005fmessage_005f12(_jspx_page_context))
return;
out.write("</span></a></li>\r\n");
out.write("\t\t\t\t\t\t\t<li onclick=\"changeCardInfo(this, 'btnCard3_layer');return false;\"><a href=\"#\"><span>");
if (_jspx_meth_spring_005fmessage_005f13(_jspx_page_context))
return;
out.write("</span></a></li>\r\n");
out.write("\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t<!-- 공인인증안내 : str -->\r\n");
out.write("\t\t\t\t\t\t<div class=\"card-info-box\" id=\"btnCard1_layer\">\r\n");
out.write("\t\t\t\t\t\t\t<dl>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt>");
if (_jspx_meth_spring_005fmessage_005f14(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<p>");
if (_jspx_meth_spring_005fmessage_005f15(_jspx_page_context))
return;
out.write("</p>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<div class=\"data-table03\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<table>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<caption>");
if (_jspx_meth_spring_005fmessage_005f16(_jspx_page_context))
return;
out.write("</caption>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<colgroup>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<col style=\"width:90px;\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<col>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<col>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</colgroup>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tbody>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f17(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td>");
if (_jspx_meth_spring_005fmessage_005f18(_jspx_page_context))
return;
out.write("</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td>");
if (_jspx_meth_spring_005fmessage_005f19(_jspx_page_context))
return;
out.write("</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f20(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td>");
if (_jspx_meth_spring_005fmessage_005f21(_jspx_page_context))
return;
out.write("</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td>");
if (_jspx_meth_spring_005fmessage_005f22(_jspx_page_context))
return;
out.write("</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tbody>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t</table>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<ul class=\"text-list01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f23(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f24(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<p>");
if (_jspx_meth_spring_005fmessage_005f25(_jspx_page_context))
return;
out.write("</p>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<div class=\"img-payment\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_payment_");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_locale}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write(".png\" alt=\"01. 거래은행방문 02. 인터넷뱅킹신청 03. 거래은행홈페이지 접속 04. 공인인증서 다운로드 및 설치\"></div>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<ul class=\"text-list01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f26(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li class=\"text-color02\">");
if (_jspx_meth_spring_005fmessage_005f27(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<div class=\"btn-wrap01 btn-wrap-type01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<a href=\"#\" class=\"btn-style01\" onclick=\"mypageorder.goInquiryList();return false;\"><span>");
if (_jspx_meth_spring_005fmessage_005f28(_jspx_page_context))
return;
out.write("</span></a>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t</dl>\r\n");
out.write("\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t<!-- //공인인증안내 : end -->\r\n");
out.write("\r\n");
out.write("\t\t\t\t\t\t<!-- 안전결제안내 : str -->\r\n");
out.write("\t\t\t\t\t\t<div class=\"card-info-box\" id=\"btnCard2_layer\" style=\"display:none\">\r\n");
out.write("\t\t\t\t\t\t\t<dl>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f29(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<p>");
if (_jspx_meth_spring_005fmessage_005f30(_jspx_page_context))
return;
out.write("</p>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<p>");
if (_jspx_meth_spring_005fmessage_005f31(_jspx_page_context))
return;
out.write("</p>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<p>");
if (_jspx_meth_spring_005fmessage_005f32(_jspx_page_context))
return;
out.write("</p>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<p>");
if (_jspx_meth_spring_005fmessage_005f33(_jspx_page_context))
return;
out.write("</p>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f34(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<ul class=\"text-list01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f35(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f36(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f37(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f38(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<div class=\"img-payment\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_payment2_");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_locale}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write(".png\" alt=\"01. 주문/결제 시 결제수단 선택 BC카드/국민카드/우리카드 안전결제(ISP)선택 시 02. ISP인증 비밀번호 신청/ 변경 비밀번호 입력/ 결제 30만원 이상 결제 시 공유인증 비밀번호 입력 03. 확인하기 04. 주문완료\"></div>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<div class=\"btn-wrap01 btn-wrap-type01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<a href=\"#\" class=\"btn-style02\"><span><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_isp_bc.png\" style=\"width:28px;\" alt=\"BC카드 ISP\">");
if (_jspx_meth_spring_005fmessage_005f39(_jspx_page_context))
return;
out.write("</span></a>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<a href=\"#\" class=\"btn-style02\"><span><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_isp_kb.png\" style=\"width:56px;\" alt=\"국민카드 ISP\">");
if (_jspx_meth_spring_005fmessage_005f40(_jspx_page_context))
return;
out.write("</span></a>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<a href=\"#\" class=\"btn-style02\"><span><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_isp_woori.png\" style=\"width:25px;\" alt=\"우리카드 ISP\">");
if (_jspx_meth_spring_005fmessage_005f41(_jspx_page_context))
return;
out.write("</span></a>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<p class=\"txt-sub-info01\">");
if (_jspx_meth_spring_005fmessage_005f42(_jspx_page_context))
return;
out.write("</p>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<div class=\"btn-wrap01 btn-wrap-type01\"><a href=\"#\" class=\"btn-style01\" onclick=\"mypageorder.goInquiryList();return false;\"><span>");
if (_jspx_meth_spring_005fmessage_005f43(_jspx_page_context))
return;
out.write("</span></a></div>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t</dl>\r\n");
out.write("\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t<!-- //안전결제안내 : end -->\r\n");
out.write("\r\n");
out.write("\t\t\t\t\t\t<!-- 안심클릭안내 : str -->\r\n");
out.write("\t\t\t\t\t\t<div class=\"card-info-box\" id=\"btnCard3_layer\" style=\"display:none\">\r\n");
out.write("\t\t\t\t\t\t\t<dl>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f44(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<p>");
if (_jspx_meth_spring_005fmessage_005f45(_jspx_page_context))
return;
out.write("</p>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f46(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<div class=\"data-table03\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<table>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<caption>");
if (_jspx_meth_spring_005fmessage_005f47(_jspx_page_context))
return;
out.write("</caption>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<colgroup>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<col style=\"width:60px\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<col>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<col style=\"width:60px\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<col>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</colgroup>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tbody>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f48(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_samsung.png\" style=\"width:92px;height:auto;\" alt=\"삼성카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f49(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_city.png\" style=\"width:92px;height:auto;\" alt=\"한미카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f50(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_keb.png\" style=\"width:92px;height:auto;\" alt=\"외환카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f51(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_suhyup.png\" style=\"width:92px;height:auto;\" alt=\"수협카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f52(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_lotte.png\" style=\"width:92px;height:auto;\" alt=\"롯데카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f53(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_jb.png\" style=\"width:92px;height:auto;\" alt=\"전북카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f54(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_hyundai.png\" style=\"width:92px;height:auto;\" alt=\"현대카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f55(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_kj.png\" style=\"width:92px;height:auto;\" alt=\"광주카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f56(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_shinhan.png\" style=\"width:92px;height:auto;\" alt=\"신한카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f57(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_jj.png\" style=\"width:92px;height:auto;\" alt=\"제주카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f58(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_city.png\" style=\"width:92px;height:auto;\" alt=\"시티카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f59(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_shinhan.png\" style=\"width:92px;height:auto;\" alt=\"조흥카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f60(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_ssg.png\" style=\"width:92px;height:auto;\" alt=\"신세계한미카드\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"row\">");
if (_jspx_meth_spring_005fmessage_005f61(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\"><img src=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_resourceURL}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("static/images/order/img_card_shinhan2.png\" style=\"width:92px;height:auto;\" alt=\"신한(구LG)\"></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tbody>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t</table>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f62(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<ul class=\"text-list01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f63(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f64(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f65(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f66(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<ul class=\"text-list01 col-type01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li><strong>");
if (_jspx_meth_spring_005fmessage_005f67(_jspx_page_context))
return;
out.write("</strong>");
if (_jspx_meth_spring_005fmessage_005f68(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f69(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<ul class=\"text-list01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f70(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<dt class=\"card-info-title01\">");
if (_jspx_meth_spring_005fmessage_005f71(_jspx_page_context))
return;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<ul class=\"text-list01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f72(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f73(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f74(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<ul class=\"text-list01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<li class=\"text-color02\">");
if (_jspx_meth_spring_005fmessage_005f75(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<div class=\"btn-wrap01 btn-wrap-type01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<a href=\"#\" class=\"btn-style01\" onclick=\"mypageorder.goInquiryList();return false;\"><span>");
if (_jspx_meth_spring_005fmessage_005f76(_jspx_page_context))
return;
out.write("</span></a>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t\t</dl>\r\n");
out.write("\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t<!-- //안심클릭안내 : end -->\r\n");
out.write("\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t<!-- //결제수단 - 신용/체크카드 : end -->\r\n");
out.write("\r\n");
out.write("\t\t\t\t\t<!-- 결제수단 - 네이버페이 : str -->\r\n");
out.write("\t\t\t\t\t<div class=\"order-payment-content\" id=\"order-payment-content_naver\" style=\"display:none;\">\r\n");
out.write("\t\t\t\t\t\t<h4 class=\"title03\">");
if (_jspx_meth_spring_005fmessage_005f77(_jspx_page_context))
return;
out.write("</h4>\r\n");
out.write("\t\t\t\t\t\t<ul class=\"text-list02\">\r\n");
out.write("\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f78(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f79(_jspx_page_context))
return;
out.write("<ul class=\"text-list01 col-type01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t<li><strong>");
if (_jspx_meth_spring_005fmessage_005f80(_jspx_page_context))
return;
out.write("</strong><br>");
if (_jspx_meth_spring_005fmessage_005f81(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<li><strong>");
if (_jspx_meth_spring_005fmessage_005f82(_jspx_page_context))
return;
out.write("</strong><br>");
if (_jspx_meth_spring_005fmessage_005f83(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f84(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t<!-- //결제수단 - 네이버페이 : end -->\r\n");
out.write("\r\n");
out.write("\t\t\t\t\t<!-- 결제수단 - 실시간 계좌이체 : str -->\r\n");
out.write("\t\t\t\t\t<div class=\"order-payment-content\" id=\"order-payment-content_010000000000\" style=\"display:none;\">\r\n");
out.write("\t\t\t\t\t\t<h4 class=\"title03\">");
if (_jspx_meth_spring_005fmessage_005f85(_jspx_page_context))
return;
out.write("</h4>\r\n");
out.write("\t\t\t\t\t\t<ul class=\"radio-list\">\r\n");
out.write("\t\t\t\t\t\t\t<li>\r\n");
out.write("\t\t\t\t\t\t\t\t<span class=\"rdo-skin\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t<input type=\"radio\" id=\"rdoEscrow01\" name=\"escrPayYn\" value=\"Y\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t<span>");
if (_jspx_meth_spring_005fmessage_005f86(_jspx_page_context))
return;
out.write("</span>\r\n");
out.write("\t\t\t\t\t\t\t\t</span><label for=\"rdoEscrow01\">");
if (_jspx_meth_spring_005fmessage_005f87(_jspx_page_context))
return;
out.write("</label>\r\n");
out.write("\t\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t\t\t<li>\r\n");
out.write("\t\t\t\t\t\t\t\t<span class=\"rdo-skin\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t<input type=\"radio\" id=\"rdoEscrow02\" name=\"escrPayYn\" checked=\"checked\" value=\"N\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t<span>");
if (_jspx_meth_spring_005fmessage_005f88(_jspx_page_context))
return;
out.write("</span>\r\n");
out.write("\t\t\t\t\t\t\t\t</span><label for=\"rdoEscrow02\">");
if (_jspx_meth_spring_005fmessage_005f89(_jspx_page_context))
return;
out.write("</label>\r\n");
out.write("\t\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t<ul class=\"text-list01\">\r\n");
out.write("\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f90(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t<li>");
if (_jspx_meth_spring_005fmessage_005f91(_jspx_page_context))
return;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t<div class=\"toggle-box-wrap d_toggle\">\r\n");
out.write("\t\t\t\t\t\t\t<h4 class=\"title03\">");
if (_jspx_meth_spring_005fmessage_005f92(_jspx_page_context))
return;
out.write("</h4>\r\n");
out.write("\t\t\t\t\t\t\t<button type=\"button\" class=\"btn-open d_toggle_select\"><span>Open</span></button>\r\n");
out.write("\t\t\t\t\t\t\t\r\n");
out.write("\t\t\t\t\t\t\t<div class=\"toggle-box-cnt bank-info-cont\">\r\n");
out.write("\t\t\t\t\t\t\t\t<div class=\"data-table03\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t<table>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<caption></caption>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<colgroup>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<col style=\"width:80px;\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<col style=\"width:115px;\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<col>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t</colgroup>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<tbody>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f93(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f94(_jspx_page_context))
return;
out.write("<br>08:00 - 23:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.kyongnambank.co.kr\" target=\"_blank\">www.kyongnambank.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f95(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f96(_jspx_page_context))
return;
out.write("<br>08:00 - 23:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.kbstar.com\" target=\"_blank\">www.kbstar.com</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f97(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f98(_jspx_page_context))
return;
out.write("<br> 05:00 - 24:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.kjbank.co.kr\" target=\"_blank\">www.kjbank.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f99(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f100(_jspx_page_context))
return;
out.write("<br> 01:00 - 23:30</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.ibk.co.kr\" target=\"_blank\">www.ibk.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f101(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f102(_jspx_page_context))
return;
out.write("<br>04:00 - 23:30</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.nonghyup.co.kr\" target=\"_blank\">www.nonghyup.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f103(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f104(_jspx_page_context))
return;
out.write("<br> 01:00 - 23:30</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.kyongnambank.co.kr\" target=\"_blank\">www.kyongnambank.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f105(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f106(_jspx_page_context))
return;
out.write("<br> 07:00 - 23:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.pusanbank.co.kr\" target=\"_blank\">www.pusanbank.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f107(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f108(_jspx_page_context))
return;
out.write("<br> 01:00 - 23:30</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.kfcc.co.kr\" target=\"_blank\">www.kfcc.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f109(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f110(_jspx_page_context))
return;
out.write("<br> 01:00 - 23:30</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.suhyup.co.kr\" target=\"_blank\">www.suhyup.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f111(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f112(_jspx_page_context))
return;
out.write("<br> 00:00 - 24:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.shinhan.com\" target=\"_blank\">www.shinhan.com</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f113(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f114(_jspx_page_context))
return;
out.write("<br> 01:00 - 23:30</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.wooribank.com\" target=\"_blank\">www.wooribank.com</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f115(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f116(_jspx_page_context))
return;
out.write("<br> 00:30 - 23:40</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.epostbank.go.kr\" target=\"_blank\">www.epostbank.go.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f117(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f118(_jspx_page_context))
return;
out.write("<br> 01:00 - 24:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.koexbank.co.kr\" target=\"_blank\">www.koexbank.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f119(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f120(_jspx_page_context))
return;
out.write("<br> 04:00 - 24:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.jbbank.co.kr\" target=\"_blank\">www.jbbank.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f121(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f122(_jspx_page_context))
return;
out.write("<br> 06:00 - 24:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.chb.co.kr\" target=\"_blank\">www.chb.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f123(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f124(_jspx_page_context))
return;
out.write("<br> 07:00 - 23:30</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.kfb.co.kr\" target=\"_blank\">www.kfb.co.kr</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f125(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f126(_jspx_page_context))
return;
out.write("<br> 06:00 - 24:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.e-jejubank.com\" target=\"_blank\">www.e-jejubank.com</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f127(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f128(_jspx_page_context))
return;
out.write("<br> 01:00 - 23:30</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.hanaib.com\" target=\"_blank\">www.hanaib.com</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<th scope=\"col\">");
if (_jspx_meth_spring_005fmessage_005f129(_jspx_page_context))
return;
out.write("</th>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"tcenter\">");
if (_jspx_meth_spring_005fmessage_005f130(_jspx_page_context))
return;
out.write("<br> 08:00 - 23:00</td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\"http://www.goodbank.com\" target=\"_blank\">www.goodbank.com</a></td>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t</tbody>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</table>\r\n");
out.write("\t\t\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t\t\t<button type=\"button\" class=\"btn-close d_toggle_select\"><span>Close</span></button>\r\n");
out.write("\t\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t</div>\r\n");
out.write("\t\t\t\t\t<!-- //결제수단 - 실시간 계좌이체 : end -->\r\n");
out.write("\t\t\t\t\t\r\n");
out.write("\r\n");
out.write("\t\t\t\t\t<!-- 품절 시 빠른 환불서비스 : str -->\r\n");
out.write("\t\t\t\t\t");
if (_jspx_meth_c_005fif_005f0(_jspx_page_context))
return;
out.write("<!-- //품절 시 빠른 환불서비스 : end -->\r\n");
out.write("\r\n");
out.write("\t\t\t\t</div>\r\n");
out.write("\t\t\t\t<div class=\"btn-wrap01\">\r\n");
out.write("\t\t\t\t\t<a href=\"#\" class=\"btn-style07 \" id=\"doPayBtn\" ontouchend=\"doPayment();return false;\"><span>");
if (_jspx_meth_spring_005fmessage_005f146(_jspx_page_context))
return;
out.write("</span></a>\r\n");
out.write("\t\t\t\t</div>\r\n");
out.write("\t\t\t</div>\r\n");
out.write("\t\t</div>\r\n");
out.write("\t</div>\r\n");
out.write("</div>\r\n");
out.write("<div class=\"webview-layer-close\">\r\n");
out.write("\t<button type=\"button\" class=\"d_webview_close\">");
if (_jspx_meth_spring_005fmessage_005f147(_jspx_page_context))
return;
out.write("</button>\r\n");
out.write("</div>\r\n");
out.write("</form>\r\n");
out.write("<form id=\"kcpForm\" name=\"kcpForm\"></form>\r\n");
out.write("<script>\r\n");
out.write("\t\t\r\n");
out.write("\tscrollAnchor.init();\r\n");
out.write("\ticonToggle.init();\r\n");
out.write("\ttoggleBtn.init();\r\n");
out.write("\tscrollEv.init();\r\n");
out.write("\ttoggle.init();\r\n");
out.write("\r\n");
out.write("\tlocalStorage.clear();\r\n");
out.write(" \r\n");
out.write("\tfunction doPayment() {\r\n");
out.write("\t\tvar data = {\r\n");
out.write("\t\t\tordNo : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.ordNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("' ,\r\n");
out.write("\t\t\ttype : $(\"#payNoType\").val() ,\r\n");
out.write("\t\t\tpayNo : $(\"#payNo\").val(),\r\n");
out.write("\t\t\t'");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_csrf.parameterName}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("' : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_csrf.token}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t\t};\r\n");
out.write("\t\r\n");
out.write("\t\t");
out.write("\r\n");
out.write("\t\t$.ajax({\r\n");
out.write("\t\t\ttype : \"POST\" ,\r\n");
out.write("\t\t\turl : \"/mypage/order/payment/pginfo.json\" ,\r\n");
out.write("\t\t\tdata : data ,\r\n");
out.write("\t\t\tdataType : \"json\" ,\r\n");
out.write("\t\t\tasync : false,\r\n");
out.write("\t\t\tsuccess : function(jsonData) {\r\n");
out.write("\t\t\t\tvar new_payNo = jsonData.payNo;\r\n");
out.write("\t\t\t\t$(\"#payNo\").val(new_payNo);\r\n");
out.write("\t\t\t\tvar escrYn = \"N\";\r\n");
out.write("\t\t\t\t\r\n");
out.write("\t\t\t\t$('[name=\"escrPayYn\"]').each(function(){\r\n");
out.write("\t\t\t\t\tif($(this).is(\":checked:enabled\")){\r\n");
out.write("\t\t\t\t\t\tescrYn = $(this).val();\r\n");
out.write("\t\t\t\t\t}\r\n");
out.write("\t\t\t\t});\r\n");
out.write("\t\t\t\t\r\n");
out.write("\t\t\t\tvar data = { \r\n");
out.write("\t\t\t\t\t ordNo : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.ordNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , totAmt : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.payExchgRtCrncySumAmt}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("' \r\n");
out.write("\t , itemCode : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.itmNoStr}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , itemName : \"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.godNm}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write('외');
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.itemNoCnt}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("건\"\r\n");
out.write("\t , itemCnt : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.itemNoCnt}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , mbrId : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${mbrId}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , mbrEmail : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${mbrEmail}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , buyerNm : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.cstmrNm}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , buyrTel : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.cstmrMobilAreaNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.cstmrMobilTlofNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.cstmrMobilTlofWthnNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , recpNm : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.lgsDlvspFoExtend[0].addrseNm}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , recpTel : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.lgsDlvspFoExtend[0].addrseMobilAreaNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.lgsDlvspFoExtend[0].addrseMobilTlofNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.lgsDlvspFoExtend[0].addrseMobilTlofWthnNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , postNo : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.lgsDlvspFoExtend[0].addrsePostNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , addr1 : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.lgsDlvspFoExtend[0].addrseBaseAddr}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t , addr2 : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.lgsDlvspFoExtend[0].addrseDetailAddr}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t\t\t\t\t , payNo : new_payNo\r\n");
out.write("\t\t\t\t\t , type : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${type}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t\t\t\t\t , ordNo : '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.ordNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("'\r\n");
out.write("\t\t\t\t\t , escrYn : escrYn\r\n");
out.write("\t\t\t\t\t , returnURL : location.origin + \"/mypage/order/payment/pgauth\"\t\r\n");
out.write("\t };\r\n");
out.write("\t\t\t\t\r\n");
out.write("\t\t\t\tdata.npayInfo = jsonData.npayInfo;\r\n");
out.write("\t\t\t\tdata.kcpInfo = jsonData.kcpInfo;\r\n");
out.write("\t\t\t\t\r\n");
out.write("\t mypagepay.setMypageParameter(document.orderDTO, data, '");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.ordTpCd}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("');\r\n");
out.write("\t \r\n");
out.write("\t $(\"#refererURL\").val(document.location);\r\n");
out.write("\t \r\n");
out.write("\t mypagepay.payment(document.orderDTO, data);\t\t\r\n");
out.write("\t\t\t},\r\n");
out.write("\t\t\terror : function(e){\r\n");
out.write("\t\t\t\talert(e.responseText);\r\n");
out.write("\t\t\t}\r\n");
out.write("\t\t});\r\n");
out.write("\t}\r\n");
out.write("\r\n");
out.write("\tfunction changeCardInfo(obj, div) {\r\n");
out.write("\t\t$('.d_tab li').removeClass('on');\r\n");
out.write("\t\t$(obj).addClass('on');\r\n");
out.write("\t\t$('.order-payment-content .card-info-box').hide();\r\n");
out.write("\t\t$(\"#\" + div).show();\r\n");
out.write("\t\tscrollRefresh();\r\n");
out.write("\t}\r\n");
out.write("\r\n");
out.write("\tfunction changePayMnCd(payMnCd) {\r\n");
out.write("\t\tif(payMnCd == 'CREDT_CARD_PAY') {\r\n");
out.write("\t\t\t$('#order-payment-content_100000000000').show();\r\n");
out.write("\t\t\t$('#order-payment-content_naver').hide();\r\n");
out.write("\t\t\t$('#order-payment-content_010000000000').hide();\r\n");
out.write("\t\t} else if(payMnCd == 'NAVER_PAY') {\r\n");
out.write("\t\t\t$('#order-payment-content_naver').show();\r\n");
out.write("\t\t\t$('#order-payment-content_100000000000').hide();\r\n");
out.write("\t\t\t$('#order-payment-content_010000000000').hide();\r\n");
out.write("\t\t} else if(payMnCd == 'RLTM_BNK_ACCT_PAY') {\r\n");
out.write("\t\t\t$('#order-payment-content_010000000000').show();\r\n");
out.write("\t\t\t$('#order-payment-content_100000000000').hide();\r\n");
out.write("\t\t\t$('#order-payment-content_naver').hide();\r\n");
out.write("\t\t}\r\n");
out.write("\t\tscrollRefresh();\r\n");
out.write("\t}\r\n");
out.write("\t\r\n");
out.write("\tfunction scrollRefresh() {\r\n");
out.write("\t\tif (layerScrollWeb != undefined) {\r\n");
out.write(" setTimeout(function () {\r\n");
out.write(" layerScrollWeb.refresh();\r\n");
out.write(" }, 0);\r\n");
out.write(" }\r\n");
out.write("\t}\r\n");
out.write("\r\n");
out.write("\t$(document).ready(function(){\r\n");
out.write("\t\tscrollRefresh();\r\n");
out.write("\t});\r\n");
out.write("\t\r\n");
out.write("</script>");
} catch (java.lang.Throwable t) {
if (!(t instanceof javax.servlet.jsp.SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
try {
if (response.isCommitted()) {
out.flush();
} else {
out.clearBuffer();
}
} catch (java.io.IOException e) {}
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
else throw new ServletException(t);
}
} finally {
_jspxFactory.releasePageContext(_jspx_page_context);
}
}
private boolean _jspx_meth_c_005fchoose_005f0(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:choose
org.apache.taglibs.standard.tag.common.core.ChooseTag _jspx_th_c_005fchoose_005f0 = (org.apache.taglibs.standard.tag.common.core.ChooseTag) _005fjspx_005ftagPool_005fc_005fchoose.get(org.apache.taglibs.standard.tag.common.core.ChooseTag.class);
boolean _jspx_th_c_005fchoose_005f0_reused = false;
try {
_jspx_th_c_005fchoose_005f0.setPageContext(_jspx_page_context);
_jspx_th_c_005fchoose_005f0.setParent(null);
int _jspx_eval_c_005fchoose_005f0 = _jspx_th_c_005fchoose_005f0.doStartTag();
if (_jspx_eval_c_005fchoose_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
if (_jspx_meth_c_005fwhen_005f0(_jspx_th_c_005fchoose_005f0, _jspx_page_context))
return true;
if (_jspx_meth_c_005fwhen_005f1(_jspx_th_c_005fchoose_005f0, _jspx_page_context))
return true;
if (_jspx_meth_c_005fwhen_005f2(_jspx_th_c_005fchoose_005f0, _jspx_page_context))
return true;
int evalDoAfterBody = _jspx_th_c_005fchoose_005f0.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fchoose_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005fchoose.reuse(_jspx_th_c_005fchoose_005f0);
_jspx_th_c_005fchoose_005f0_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fchoose_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fchoose_005f0_reused);
}
return false;
}
private boolean _jspx_meth_c_005fwhen_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fchoose_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:when
org.apache.taglibs.standard.tag.rt.core.WhenTag _jspx_th_c_005fwhen_005f0 = (org.apache.taglibs.standard.tag.rt.core.WhenTag) _005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.WhenTag.class);
boolean _jspx_th_c_005fwhen_005f0_reused = false;
try {
_jspx_th_c_005fwhen_005f0.setPageContext(_jspx_page_context);
_jspx_th_c_005fwhen_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fchoose_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(6,4) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fwhen_005f0.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.type eq \"clmDlvAmtPay\"}", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue());
int _jspx_eval_c_005fwhen_005f0 = _jspx_th_c_005fwhen_005f0.doStartTag();
if (_jspx_eval_c_005fwhen_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("<form action=\"");
if (_jspx_meth_c_005furl_005f0(_jspx_th_c_005fwhen_005f0, _jspx_page_context))
return true;
out.write("\" name=\"orderDTO\" id=\"orderDTO\" method=\"post\">\r\n");
out.write(" <input type=\"hidden\" id=\"action\" name=\"action\" value=\"/mypage/claim/payment/addpay.json\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"type\" name=\"type\" value=\"clmDlvAmtPay\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"clmNo\" name=\"clmNo\" value=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.clmNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"payNo\"\t\t\t\t\t\t value=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.payNo}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"payNoType\" \t\t\t\t value=\"U\" />\r\n");
out.write(" <input type=\"hidden\" id=\"addPayClmTpCd\" name=\"addPayClmTpCd\" value=\"");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.addPayClmTpCd }", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
out.write("\"/>\r\n");
out.write(" ");
int evalDoAfterBody = _jspx_th_c_005fwhen_005f0.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fwhen_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest.reuse(_jspx_th_c_005fwhen_005f0);
_jspx_th_c_005fwhen_005f0_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fwhen_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fwhen_005f0_reused);
}
return false;
}
private boolean _jspx_meth_c_005furl_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fwhen_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f0 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
boolean _jspx_th_c_005furl_005f0_reused = false;
try {
_jspx_th_c_005furl_005f0.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fwhen_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(7,22) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f0.setValue("/mypage/claim/payment/addpay.json");
int _jspx_eval_c_005furl_005f0 = _jspx_th_c_005furl_005f0.doStartTag();
if (_jspx_th_c_005furl_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f0);
_jspx_th_c_005furl_005f0_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f0, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f0_reused);
}
return false;
}
private boolean _jspx_meth_c_005fwhen_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fchoose_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:when
org.apache.taglibs.standard.tag.rt.core.WhenTag _jspx_th_c_005fwhen_005f1 = (org.apache.taglibs.standard.tag.rt.core.WhenTag) _005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.WhenTag.class);
boolean _jspx_th_c_005fwhen_005f1_reused = false;
try {
_jspx_th_c_005fwhen_005f1.setPageContext(_jspx_page_context);
_jspx_th_c_005fwhen_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fchoose_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(16,4) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fwhen_005f1.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.ordTpCd eq \"LAG_QTY_ORD\" && orderInfo.ordStatCd eq \"PAY_WAIT\"}", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue());
int _jspx_eval_c_005fwhen_005f1 = _jspx_th_c_005fwhen_005f1.doStartTag();
if (_jspx_eval_c_005fwhen_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("<form action=\"");
if (_jspx_meth_c_005furl_005f1(_jspx_th_c_005fwhen_005f1, _jspx_page_context))
return true;
out.write("\" name=\"orderDTO\" id=\"orderDTO\" method=\"post\">\r\n");
out.write(" <input type=\"hidden\" id=\"action\" name=\"action\" value=\"/mypage/order/payment/paylagqtyord\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"type\" name=\"type\" value=\"updaePayMethodChange\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"payNo\"\t\t\t\t\t\t value=\"\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"payNoType\" \t\t\t\t value=\"I\" />\r\n");
out.write(" ");
int evalDoAfterBody = _jspx_th_c_005fwhen_005f1.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fwhen_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest.reuse(_jspx_th_c_005fwhen_005f1);
_jspx_th_c_005fwhen_005f1_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fwhen_005f1, _jsp_getInstanceManager(), _jspx_th_c_005fwhen_005f1_reused);
}
return false;
}
private boolean _jspx_meth_c_005furl_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fwhen_005f1, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f1 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
boolean _jspx_th_c_005furl_005f1_reused = false;
try {
_jspx_th_c_005furl_005f1.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fwhen_005f1);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(17,22) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f1.setValue("/mypage/order/payment/paylagqtyord");
int _jspx_eval_c_005furl_005f1 = _jspx_th_c_005furl_005f1.doStartTag();
if (_jspx_th_c_005furl_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f1);
_jspx_th_c_005furl_005f1_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f1, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f1_reused);
}
return false;
}
private boolean _jspx_meth_c_005fwhen_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fchoose_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:when
org.apache.taglibs.standard.tag.rt.core.WhenTag _jspx_th_c_005fwhen_005f2 = (org.apache.taglibs.standard.tag.rt.core.WhenTag) _005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.WhenTag.class);
boolean _jspx_th_c_005fwhen_005f2_reused = false;
try {
_jspx_th_c_005fwhen_005f2.setPageContext(_jspx_page_context);
_jspx_th_c_005fwhen_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fchoose_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(24,4) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fwhen_005f2.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${((orderInfo.ordTpCd eq \"GNRL_ORD\" || orderInfo.ordTpCd eq \"SHOP_PKUP_ORD\" || orderInfo.ordTpCd eq \"GFCT_ORD\" || orderInfo.ordTpCd eq \"RESVE_ORD\") && orderInfo.ordStatCd eq \"DEPST_WAIT\" ) }", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue());
int _jspx_eval_c_005fwhen_005f2 = _jspx_th_c_005fwhen_005f2.doStartTag();
if (_jspx_eval_c_005fwhen_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("<form action=\"");
if (_jspx_meth_c_005furl_005f2(_jspx_th_c_005fwhen_005f2, _jspx_page_context))
return true;
out.write("\" name=\"orderDTO\" id=\"orderDTO\" method=\"post\">\r\n");
out.write(" <input type=\"hidden\" id=\"action\" name=\"action\" value=\"/mypage/order/payment/changepay\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"type\" name=\"type\" value=\"rerunPayMethodChange\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"payNo\"\t\t\t\t\t\tvalue=\"\"/>\r\n");
out.write(" <input type=\"hidden\" id=\"payNoType\" \t\t\t\tvalue=\"I\" />\r\n");
out.write(" ");
int evalDoAfterBody = _jspx_th_c_005fwhen_005f2.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fwhen_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005fwhen_0026_005ftest.reuse(_jspx_th_c_005fwhen_005f2);
_jspx_th_c_005fwhen_005f2_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fwhen_005f2, _jsp_getInstanceManager(), _jspx_th_c_005fwhen_005f2_reused);
}
return false;
}
private boolean _jspx_meth_c_005furl_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fwhen_005f2, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:url
org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f2 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
boolean _jspx_th_c_005furl_005f2_reused = false;
try {
_jspx_th_c_005furl_005f2.setPageContext(_jspx_page_context);
_jspx_th_c_005furl_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fwhen_005f2);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(25,22) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005furl_005f2.setValue("/mypage/order/payment/changepay");
int _jspx_eval_c_005furl_005f2 = _jspx_th_c_005furl_005f2.doStartTag();
if (_jspx_th_c_005furl_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f2);
_jspx_th_c_005furl_005f2_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f2, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f2_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f0(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f0 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f0_reused = false;
try {
_jspx_th_spring_005fmessage_005f0.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f0.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(53,41) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f0.setCode("mypage.order.lbl.payment.dopay");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(53,41) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f0.setText("결제하기");
int[] _jspx_push_body_count_spring_005fmessage_005f0 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f0 = _jspx_th_spring_005fmessage_005f0.doStartTag();
if (_jspx_th_spring_005fmessage_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f0[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f0.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f0.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f0);
_jspx_th_spring_005fmessage_005f0_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f0, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f0_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f1(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f1 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f1_reused = false;
try {
_jspx_th_spring_005fmessage_005f1.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f1.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(58,36) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f1.setCode("mypage.order.lbl.payment.payamount");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(58,36) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f1.setText("결제금액");
int[] _jspx_push_body_count_spring_005fmessage_005f1 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f1 = _jspx_th_spring_005fmessage_005f1.doStartTag();
if (_jspx_th_spring_005fmessage_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f1[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f1.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f1.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f1);
_jspx_th_spring_005fmessage_005f1_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f1, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f1_reused);
}
return false;
}
private boolean _jspx_meth_fmt_005fformatNumber_005f0(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// fmt:formatNumber
org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag _jspx_th_fmt_005fformatNumber_005f0 = (org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag) _005fjspx_005ftagPool_005ffmt_005fformatNumber_0026_005fvalue_005fpattern_005fnobody.get(org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag.class);
boolean _jspx_th_fmt_005fformatNumber_005f0_reused = false;
try {
_jspx_th_fmt_005fformatNumber_005f0.setPageContext(_jspx_page_context);
_jspx_th_fmt_005fformatNumber_005f0.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(58,126) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fmt_005fformatNumber_005f0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.payExchgRtCrncySumAmt}", java.lang.Object.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null));
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(58,126) name = pattern type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_fmt_005fformatNumber_005f0.setPattern("#,###");
int _jspx_eval_fmt_005fformatNumber_005f0 = _jspx_th_fmt_005fformatNumber_005f0.doStartTag();
if (_jspx_th_fmt_005fformatNumber_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005ffmt_005fformatNumber_0026_005fvalue_005fpattern_005fnobody.reuse(_jspx_th_fmt_005fformatNumber_005f0);
_jspx_th_fmt_005fformatNumber_005f0_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_fmt_005fformatNumber_005f0, _jsp_getInstanceManager(), _jspx_th_fmt_005fformatNumber_005f0_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f2(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f2 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f2_reused = false;
try {
_jspx_th_spring_005fmessage_005f2.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f2.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(58,210) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f2.setCode("mypage.order.lbl.currency");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(58,210) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f2.setText("원");
int[] _jspx_push_body_count_spring_005fmessage_005f2 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f2 = _jspx_th_spring_005fmessage_005f2.doStartTag();
if (_jspx_th_spring_005fmessage_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f2[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f2.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f2.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f2);
_jspx_th_spring_005fmessage_005f2_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f2, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f2_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f3(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f3 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f3_reused = false;
try {
_jspx_th_spring_005fmessage_005f3.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f3.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(59,25) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f3.setCode("mypage.order.lbl.payment.selectpaymethod");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(59,25) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f3.setText("결제수단 선택");
int[] _jspx_push_body_count_spring_005fmessage_005f3 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f3 = _jspx_th_spring_005fmessage_005f3.doStartTag();
if (_jspx_th_spring_005fmessage_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f3[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f3.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f3.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f3);
_jspx_th_spring_005fmessage_005f3_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f3, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f3_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f4(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f4 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f4_reused = false;
try {
_jspx_th_spring_005fmessage_005f4.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f4.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(64,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f4.setCode("mypage.order.lbl.select");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(64,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f4.setText("선택");
int[] _jspx_push_body_count_spring_005fmessage_005f4 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f4 = _jspx_th_spring_005fmessage_005f4.doStartTag();
if (_jspx_th_spring_005fmessage_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f4[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f4.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f4.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f4);
_jspx_th_spring_005fmessage_005f4_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f4, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f4_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f5(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f5 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f5_reused = false;
try {
_jspx_th_spring_005fmessage_005f5.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f5.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(65,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f5.setCode("mypage.order.lbl.payment.creditcard");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(65,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f5.setText("신용카드 결제");
int[] _jspx_push_body_count_spring_005fmessage_005f5 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f5 = _jspx_th_spring_005fmessage_005f5.doStartTag();
if (_jspx_th_spring_005fmessage_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f5[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f5.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f5.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f5);
_jspx_th_spring_005fmessage_005f5_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f5, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f5_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f6(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f6 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f6_reused = false;
try {
_jspx_th_spring_005fmessage_005f6.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f6.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(70,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f6.setCode("mypage.order.lbl.select");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(70,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f6.setText("선택");
int[] _jspx_push_body_count_spring_005fmessage_005f6 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f6 = _jspx_th_spring_005fmessage_005f6.doStartTag();
if (_jspx_th_spring_005fmessage_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f6[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f6.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f6.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f6);
_jspx_th_spring_005fmessage_005f6_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f6, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f6_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f7(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f7 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f7_reused = false;
try {
_jspx_th_spring_005fmessage_005f7.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f7.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(71,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f7.setCode("mypage.order.lbl.payment.naverpay");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(71,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f7.setText("네이버페이");
int[] _jspx_push_body_count_spring_005fmessage_005f7 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f7 = _jspx_th_spring_005fmessage_005f7.doStartTag();
if (_jspx_th_spring_005fmessage_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f7[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f7.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f7.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f7);
_jspx_th_spring_005fmessage_005f7_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f7, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f7_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f8(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f8 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f8_reused = false;
try {
_jspx_th_spring_005fmessage_005f8.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f8.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(76,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f8.setCode("mypage.order.lbl.select");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(76,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f8.setText("선택");
int[] _jspx_push_body_count_spring_005fmessage_005f8 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f8 = _jspx_th_spring_005fmessage_005f8.doStartTag();
if (_jspx_th_spring_005fmessage_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f8[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f8.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f8.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f8);
_jspx_th_spring_005fmessage_005f8_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f8, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f8_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f9(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f9 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f9_reused = false;
try {
_jspx_th_spring_005fmessage_005f9.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f9.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(77,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f9.setCode("mypage.order.lbl.payment.rltmbnk");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(77,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f9.setText("실시간 계좌이체");
int[] _jspx_push_body_count_spring_005fmessage_005f9 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f9 = _jspx_th_spring_005fmessage_005f9.doStartTag();
if (_jspx_th_spring_005fmessage_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f9[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f9.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f9.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f9);
_jspx_th_spring_005fmessage_005f9_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f9, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f9_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f10(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f10 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f10_reused = false;
try {
_jspx_th_spring_005fmessage_005f10.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f10.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(82,26) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f10.setCode("mypage.order.lbl.payment.creditcard.info");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(82,26) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f10.setText("신용카드결제 시 유의사항");
int[] _jspx_push_body_count_spring_005fmessage_005f10 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f10 = _jspx_th_spring_005fmessage_005f10.doStartTag();
if (_jspx_th_spring_005fmessage_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f10[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f10.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f10.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f10);
_jspx_th_spring_005fmessage_005f10_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f10, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f10_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f11(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f11 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f11_reused = false;
try {
_jspx_th_spring_005fmessage_005f11.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f11.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(84,103) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f11.setCode("mypage.order.lbl.payment.creditcard.info1");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(84,103) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f11.setText("공인인증안내");
int[] _jspx_push_body_count_spring_005fmessage_005f11 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f11 = _jspx_th_spring_005fmessage_005f11.doStartTag();
if (_jspx_th_spring_005fmessage_005f11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f11[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f11.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f11.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f11);
_jspx_th_spring_005fmessage_005f11_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f11, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f11_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f12(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f12 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f12_reused = false;
try {
_jspx_th_spring_005fmessage_005f12.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f12.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(85,92) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f12.setCode("mypage.order.lbl.payment.creditcard.info2");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(85,92) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f12.setText("안전결제안내");
int[] _jspx_push_body_count_spring_005fmessage_005f12 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f12 = _jspx_th_spring_005fmessage_005f12.doStartTag();
if (_jspx_th_spring_005fmessage_005f12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f12[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f12.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f12.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f12);
_jspx_th_spring_005fmessage_005f12_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f12, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f12_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f13(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f13 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f13_reused = false;
try {
_jspx_th_spring_005fmessage_005f13.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f13.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(86,92) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f13.setCode("mypage.order.lbl.payment.creditcard.info3");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(86,92) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f13.setText("안심클릭안내");
int[] _jspx_push_body_count_spring_005fmessage_005f13 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f13 = _jspx_th_spring_005fmessage_005f13.doStartTag();
if (_jspx_th_spring_005fmessage_005f13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f13[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f13.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f13.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f13);
_jspx_th_spring_005fmessage_005f13_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f13, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f13_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f14(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f14 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f14_reused = false;
try {
_jspx_th_spring_005fmessage_005f14.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f14.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(91,12) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f14.setCode("mypage.order.lbl.payment.creditcard.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(91,12) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f14.setText("2005년 11월 1일부터 공인인증서 사용이 의무화 되었습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f14 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f14 = _jspx_th_spring_005fmessage_005f14.doStartTag();
if (_jspx_th_spring_005fmessage_005f14.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f14[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f14.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f14.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f14);
_jspx_th_spring_005fmessage_005f14_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f14, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f14_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f15(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f15 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f15_reused = false;
try {
_jspx_th_spring_005fmessage_005f15.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f15.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(93,12) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f15.setCode("mypage.order.lbl.payment.creditcard.info5");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(93,12) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f15.setText("금감원의 전자상거래 안정성 강화정책에 따라 30만원 이상의 모든 신용카드 결제에 공인인증 사용이 의무화됩니다.(단, 30만원 이하 결제시에는 공인인증서 없어도 결제 가능)");
int[] _jspx_push_body_count_spring_005fmessage_005f15 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f15 = _jspx_th_spring_005fmessage_005f15.doStartTag();
if (_jspx_th_spring_005fmessage_005f15.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f15[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f15.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f15.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f15);
_jspx_th_spring_005fmessage_005f15_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f15, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f15_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f16(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f16 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f16_reused = false;
try {
_jspx_th_spring_005fmessage_005f16.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f16.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(96,20) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f16.setCode("mypage.order.lbl.payment.creditcard.info1");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(96,20) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f16.setText("공인인증안내");
int[] _jspx_push_body_count_spring_005fmessage_005f16 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f16 = _jspx_th_spring_005fmessage_005f16.doStartTag();
if (_jspx_th_spring_005fmessage_005f16.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f16[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f16.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f16.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f16);
_jspx_th_spring_005fmessage_005f16_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f16, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f16_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f17(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f17 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f17_reused = false;
try {
_jspx_th_spring_005fmessage_005f17.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f17.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(104,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f17.setCode("mypage.order.lbl.payment.creditcard.info6");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(104,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f17.setText("30만원 미만");
int[] _jspx_push_body_count_spring_005fmessage_005f17 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f17 = _jspx_th_spring_005fmessage_005f17.doStartTag();
if (_jspx_th_spring_005fmessage_005f17.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f17[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f17.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f17.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f17);
_jspx_th_spring_005fmessage_005f17_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f17, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f17_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f18(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f18 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f18_reused = false;
try {
_jspx_th_spring_005fmessage_005f18.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f18.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(105,17) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f18.setCode("mypage.order.lbl.payment.creditcard.info7");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(105,17) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f18.setText("BC, 국민, 우리 안전결제");
int[] _jspx_push_body_count_spring_005fmessage_005f18 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f18 = _jspx_th_spring_005fmessage_005f18.doStartTag();
if (_jspx_th_spring_005fmessage_005f18.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f18[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f18.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f18.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f18);
_jspx_th_spring_005fmessage_005f18_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f18, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f18_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f19(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f19 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f19_reused = false;
try {
_jspx_th_spring_005fmessage_005f19.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f19.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(106,17) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f19.setCode("mypage.order.lbl.payment.creditcard.info8");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(106,17) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f19.setText("그외 모든카드 안전결제");
int[] _jspx_push_body_count_spring_005fmessage_005f19 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f19 = _jspx_th_spring_005fmessage_005f19.doStartTag();
if (_jspx_th_spring_005fmessage_005f19.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f19[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f19.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f19.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f19);
_jspx_th_spring_005fmessage_005f19_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f19, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f19_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f20(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f20 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f20_reused = false;
try {
_jspx_th_spring_005fmessage_005f20.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f20.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(109,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f20.setCode("mypage.order.lbl.payment.creditcard.info9");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(109,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f20.setText("30만원 이상");
int[] _jspx_push_body_count_spring_005fmessage_005f20 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f20 = _jspx_th_spring_005fmessage_005f20.doStartTag();
if (_jspx_th_spring_005fmessage_005f20.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f20[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f20.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f20.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f20);
_jspx_th_spring_005fmessage_005f20_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f20, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f20_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f21(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f21 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f21_reused = false;
try {
_jspx_th_spring_005fmessage_005f21.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f21.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(110,17) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f21.setCode("mypage.order.lbl.payment.creditcard.info10");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(110,17) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f21.setText("안전결제+공인인증");
int[] _jspx_push_body_count_spring_005fmessage_005f21 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f21 = _jspx_th_spring_005fmessage_005f21.doStartTag();
if (_jspx_th_spring_005fmessage_005f21.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f21[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f21.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f21.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f21);
_jspx_th_spring_005fmessage_005f21_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f21, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f21_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f22(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f22 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f22_reused = false;
try {
_jspx_th_spring_005fmessage_005f22.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f22.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(111,17) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f22.setCode("mypage.order.lbl.payment.creditcard.info11");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(111,17) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f22.setText("공인인증");
int[] _jspx_push_body_count_spring_005fmessage_005f22 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f22 = _jspx_th_spring_005fmessage_005f22.doStartTag();
if (_jspx_th_spring_005fmessage_005f22.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f22[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f22.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f22.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f22);
_jspx_th_spring_005fmessage_005f22_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f22, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f22_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f23(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f23 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f23_reused = false;
try {
_jspx_th_spring_005fmessage_005f23.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f23.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(117,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f23.setCode("mypage.order.lbl.payment.creditcard.info12");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(117,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f23.setText("그 외 모든 카드 : LG, 삼성, 외환, 신한, 조흥, 롯데, 하나, 한미, 전북, 수협, 제주, 광주은행 카드 등");
int[] _jspx_push_body_count_spring_005fmessage_005f23 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f23 = _jspx_th_spring_005fmessage_005f23.doStartTag();
if (_jspx_th_spring_005fmessage_005f23.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f23[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f23.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f23.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f23);
_jspx_th_spring_005fmessage_005f23_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f23, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f23_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f24(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f24 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f24_reused = false;
try {
_jspx_th_spring_005fmessage_005f24.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f24.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(120,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f24.setCode("mypage.order.lbl.payment.creditcard.info13");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(120,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f24.setText("공인인증 발급");
int[] _jspx_push_body_count_spring_005fmessage_005f24 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f24 = _jspx_th_spring_005fmessage_005f24.doStartTag();
if (_jspx_th_spring_005fmessage_005f24.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f24[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f24.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f24.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f24);
_jspx_th_spring_005fmessage_005f24_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f24, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f24_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f25(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f25 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f25_reused = false;
try {
_jspx_th_spring_005fmessage_005f25.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f25.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(122,12) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f25.setCode("mypage.order.lbl.payment.creditcard.info14");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(122,12) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f25.setText("공인인증서는 인터넷 뱅킹 도는 카드결제 시에 본인임을 확인하는 보안장치로, 다음과 같이 발급 받으 실수 있습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f25 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f25 = _jspx_th_spring_005fmessage_005f25.doStartTag();
if (_jspx_th_spring_005fmessage_005f25.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f25[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f25.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f25.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f25);
_jspx_th_spring_005fmessage_005f25_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f25, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f25_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f26(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f26 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f26_reused = false;
try {
_jspx_th_spring_005fmessage_005f26.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f26.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(125,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f26.setCode("mypage.order.lbl.payment.creditcard.info15");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(125,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f26.setText("신용카드 결제 시 공인인증서는 범용공인인증서(유료발급) 또는 신용카드용 공인인증서만 사용 가능합니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f26 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f26 = _jspx_th_spring_005fmessage_005f26.doStartTag();
if (_jspx_th_spring_005fmessage_005f26.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f26[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f26.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f26.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f26);
_jspx_th_spring_005fmessage_005f26_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f26, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f26_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f27(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f27 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f27_reused = false;
try {
_jspx_th_spring_005fmessage_005f27.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f27.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(126,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f27.setCode("mypage.order.lbl.payment.creditcard.info16");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(126,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f27.setText("추가적으로 더 궁금한 사항은 1:1 고객상담으로 문의 주시기 바랍니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f27 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f27 = _jspx_th_spring_005fmessage_005f27.doStartTag();
if (_jspx_th_spring_005fmessage_005f27.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f27[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f27.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f27.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f27);
_jspx_th_spring_005fmessage_005f27_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f27, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f27_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f28(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f28 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f28_reused = false;
try {
_jspx_th_spring_005fmessage_005f28.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f28.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(129,100) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f28.setCode("mypage.order.list.btn.inquiry");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(129,100) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f28.setText("1:1 고객상담");
int[] _jspx_push_body_count_spring_005fmessage_005f28 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f28 = _jspx_th_spring_005fmessage_005f28.doStartTag();
if (_jspx_th_spring_005fmessage_005f28.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f28[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f28.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f28.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f28);
_jspx_th_spring_005fmessage_005f28_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f28, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f28_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f29(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f29 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f29_reused = false;
try {
_jspx_th_spring_005fmessage_005f29.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f29.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(139,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f29.setCode("mypage.order.lbl.payment.creditcard.info17");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(139,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f29.setText("안전결제(ISP)란?");
int[] _jspx_push_body_count_spring_005fmessage_005f29 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f29 = _jspx_th_spring_005fmessage_005f29.doStartTag();
if (_jspx_th_spring_005fmessage_005f29.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f29[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f29.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f29.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f29);
_jspx_th_spring_005fmessage_005f29_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f29, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f29_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f30(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f30 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f30_reused = false;
try {
_jspx_th_spring_005fmessage_005f30.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f30.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(141,12) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f30.setCode("mypage.order.lbl.payment.creditcard.info18");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(141,12) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f30.setText("쇼핑몰 이용 시 고객님의 카드번호/비밀번호 등을 입력함으로써 발생될 수 있는 개인정보 유출 및 카드도용 등의 문제점을 차단해 주는 지불수단으로, 인터넷 안전결제 (ISP)비밀번호만으로 안전한 전자상거래를 할 수 있는 서비스입니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f30 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f30 = _jspx_th_spring_005fmessage_005f30.doStartTag();
if (_jspx_th_spring_005fmessage_005f30.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f30[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f30.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f30.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f30);
_jspx_th_spring_005fmessage_005f30_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f30, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f30_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f31(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f31 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f31_reused = false;
try {
_jspx_th_spring_005fmessage_005f31.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f31.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(142,12) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f31.setCode("mypage.order.lbl.payment.creditcard.info19");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(142,12) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f31.setText("BC/국민카드/우리카드사는 모든 전자상거래에 인터넷 안전결제를 의무화 시켰습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f31 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f31 = _jspx_th_spring_005fmessage_005f31.doStartTag();
if (_jspx_th_spring_005fmessage_005f31.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f31[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f31.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f31.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f31);
_jspx_th_spring_005fmessage_005f31_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f31, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f31_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f32(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f32 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f32_reused = false;
try {
_jspx_th_spring_005fmessage_005f32.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f32.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(143,12) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f32.setCode("mypage.order.lbl.payment.creditcard.info20");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(143,12) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f32.setText("30만원 이상 결제시는 공인인증서가 필요합니다. 공인인증서가 없으신 고객님 공인인증서를 발급 받아주시기 바랍니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f32 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f32 = _jspx_th_spring_005fmessage_005f32.doStartTag();
if (_jspx_th_spring_005fmessage_005f32.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f32[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f32.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f32.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f32);
_jspx_th_spring_005fmessage_005f32_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f32, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f32_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f33(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f33 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f33_reused = false;
try {
_jspx_th_spring_005fmessage_005f33.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f33.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(144,12) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f33.setCode("mypage.order.lbl.payment.creditcard.info21");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(144,12) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f33.setText("인터넷 안전결제(ISP) 이런 점이 좋습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f33 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f33 = _jspx_th_spring_005fmessage_005f33.doStartTag();
if (_jspx_th_spring_005fmessage_005f33.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f33[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f33.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f33.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f33);
_jspx_th_spring_005fmessage_005f33_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f33, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f33_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f34(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f34 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f34_reused = false;
try {
_jspx_th_spring_005fmessage_005f34.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f34.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(146,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f34.setCode("mypage.order.lbl.payment.creditcard.info21");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(146,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f34.setText("인터넷 안전결제(ISP) 이런 점이 좋습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f34 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f34 = _jspx_th_spring_005fmessage_005f34.doStartTag();
if (_jspx_th_spring_005fmessage_005f34.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f34[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f34.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f34.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f34);
_jspx_th_spring_005fmessage_005f34_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f34, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f34_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f35(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f35 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f35_reused = false;
try {
_jspx_th_spring_005fmessage_005f35.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f35.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(149,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f35.setCode("mypage.order.lbl.payment.creditcard.info22");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(149,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f35.setText("신용카드번호,비밀번호 등 개인정보 유출 및 카드 도용 방지");
int[] _jspx_push_body_count_spring_005fmessage_005f35 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f35 = _jspx_th_spring_005fmessage_005f35.doStartTag();
if (_jspx_th_spring_005fmessage_005f35.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f35[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f35.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f35.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f35);
_jspx_th_spring_005fmessage_005f35_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f35, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f35_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f36(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f36 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f36_reused = false;
try {
_jspx_th_spring_005fmessage_005f36.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f36.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(150,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f36.setCode("mypage.order.lbl.payment.creditcard.info23");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(150,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f36.setText("인터넷 안전결제(ISP) 인증번호만으로 간단하고 편리한 신용결제");
int[] _jspx_push_body_count_spring_005fmessage_005f36 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f36 = _jspx_th_spring_005fmessage_005f36.doStartTag();
if (_jspx_th_spring_005fmessage_005f36.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f36[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f36.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f36.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f36);
_jspx_th_spring_005fmessage_005f36_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f36, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f36_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f37(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f37 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f37_reused = false;
try {
_jspx_th_spring_005fmessage_005f37.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f37.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(151,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f37.setCode("mypage.order.lbl.payment.creditcard.info24");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(151,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f37.setText("인터넷 안전결제(ISP) 및 공인인증 확인으로 2중 보호가 되는 안전한 거래");
int[] _jspx_push_body_count_spring_005fmessage_005f37 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f37 = _jspx_th_spring_005fmessage_005f37.doStartTag();
if (_jspx_th_spring_005fmessage_005f37.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f37[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f37.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f37.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f37);
_jspx_th_spring_005fmessage_005f37_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f37, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f37_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f38(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f38 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f38_reused = false;
try {
_jspx_th_spring_005fmessage_005f38.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f38.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(154,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f38.setCode("mypage.order.lbl.payment.creditcard.info25");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(154,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f38.setText("BC카드/국민카드/우리카드 고객님을 위한 인터넷 안전결제(ISP)");
int[] _jspx_push_body_count_spring_005fmessage_005f38 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f38 = _jspx_th_spring_005fmessage_005f38.doStartTag();
if (_jspx_th_spring_005fmessage_005f38.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f38[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f38.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f38.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f38);
_jspx_th_spring_005fmessage_005f38_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f38, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f38_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f39(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f39 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f39_reused = false;
try {
_jspx_th_spring_005fmessage_005f39.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f39.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(159,144) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f39.setCode("mypage.order.lbl.payment.creditcard.info26");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(159,144) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f39.setText("BC카드 ISP 신청하기");
int[] _jspx_push_body_count_spring_005fmessage_005f39 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f39 = _jspx_th_spring_005fmessage_005f39.doStartTag();
if (_jspx_th_spring_005fmessage_005f39.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f39[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f39.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f39.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f39);
_jspx_th_spring_005fmessage_005f39_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f39, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f39_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f40(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f40 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f40_reused = false;
try {
_jspx_th_spring_005fmessage_005f40.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f40.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(160,144) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f40.setCode("mypage.order.lbl.payment.creditcard.info27");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(160,144) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f40.setText("국민카드 ISP 신청하기");
int[] _jspx_push_body_count_spring_005fmessage_005f40 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f40 = _jspx_th_spring_005fmessage_005f40.doStartTag();
if (_jspx_th_spring_005fmessage_005f40.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f40[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f40.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f40.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f40);
_jspx_th_spring_005fmessage_005f40_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f40, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f40_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f41(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f41 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f41_reused = false;
try {
_jspx_th_spring_005fmessage_005f41.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f41.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(161,147) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f41.setCode("mypage.order.lbl.payment.creditcard.info28");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(161,147) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f41.setText("우리카드 ISP 신청하기");
int[] _jspx_push_body_count_spring_005fmessage_005f41 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f41 = _jspx_th_spring_005fmessage_005f41.doStartTag();
if (_jspx_th_spring_005fmessage_005f41.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f41[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f41.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f41.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f41);
_jspx_th_spring_005fmessage_005f41_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f41, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f41_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f42(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f42 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f42_reused = false;
try {
_jspx_th_spring_005fmessage_005f42.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f42.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(163,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f42.setCode("mypage.order.lbl.payment.creditcard.info29");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(163,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f42.setText("웹사이트를 통해 신청과 동시에 바로 사용이 가능합니다. 추가적으로 더 궁금한 사항은 1:1 고객상담으로 문의 주시기 바랍니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f42 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f42 = _jspx_th_spring_005fmessage_005f42.doStartTag();
if (_jspx_th_spring_005fmessage_005f42.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f42[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f42.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f42.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f42);
_jspx_th_spring_005fmessage_005f42_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f42, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f42_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f43(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f43 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f43_reused = false;
try {
_jspx_th_spring_005fmessage_005f43.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f43.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(164,139) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f43.setCode("mypage.order.list.btn.inquiry");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(164,139) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f43.setText("1:1 고객상담");
int[] _jspx_push_body_count_spring_005fmessage_005f43 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f43 = _jspx_th_spring_005fmessage_005f43.doStartTag();
if (_jspx_th_spring_005fmessage_005f43.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f43[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f43.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f43.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f43);
_jspx_th_spring_005fmessage_005f43_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f43, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f43_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f44(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f44 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f44_reused = false;
try {
_jspx_th_spring_005fmessage_005f44.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f44.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(173,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f44.setCode("mypage.order.lbl.payment.creditcard.info30");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(173,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f44.setText("안심클릭이란?");
int[] _jspx_push_body_count_spring_005fmessage_005f44 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f44 = _jspx_th_spring_005fmessage_005f44.doStartTag();
if (_jspx_th_spring_005fmessage_005f44.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f44[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f44.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f44.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f44);
_jspx_th_spring_005fmessage_005f44_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f44, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f44_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f45(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f45 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f45_reused = false;
try {
_jspx_th_spring_005fmessage_005f45.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f45.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(175,12) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f45.setCode("mypage.order.lbl.payment.creditcard.info31");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(175,12) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f45.setText("인터넷 쇼핑 시 고객님이 소유하신 카드에 미리 설정해둔 전자상거래용의 별도 비밀번호를 입력하여 카드 사용자 본인을 확인함으로써 온라인 상에서의 카드 무단도용을 방지해주는 서비스입니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f45 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f45 = _jspx_th_spring_005fmessage_005f45.doStartTag();
if (_jspx_th_spring_005fmessage_005f45.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f45[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f45.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f45.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f45);
_jspx_th_spring_005fmessage_005f45_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f45, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f45_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f46(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f46 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f46_reused = false;
try {
_jspx_th_spring_005fmessage_005f46.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f46.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(177,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f46.setCode("mypage.order.lbl.payment.creditcard.info32");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(177,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f46.setText("안심클릭 카드 안내");
int[] _jspx_push_body_count_spring_005fmessage_005f46 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f46 = _jspx_th_spring_005fmessage_005f46.doStartTag();
if (_jspx_th_spring_005fmessage_005f46.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f46[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f46.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f46.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f46);
_jspx_th_spring_005fmessage_005f46_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f46, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f46_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f47(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f47 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f47_reused = false;
try {
_jspx_th_spring_005fmessage_005f47.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f47.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(181,20) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f47.setCode("mypage.order.lbl.payment.creditcard.info32");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(181,20) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f47.setText("안심클릭 카드 안내");
int[] _jspx_push_body_count_spring_005fmessage_005f47 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f47 = _jspx_th_spring_005fmessage_005f47.doStartTag();
if (_jspx_th_spring_005fmessage_005f47.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f47[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f47.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f47.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f47);
_jspx_th_spring_005fmessage_005f47_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f47, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f47_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f48(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f48 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f48_reused = false;
try {
_jspx_th_spring_005fmessage_005f48.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f48.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(190,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f48.setCode("mypage.order.lbl.payment.creditcard.cardname1");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(190,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f48.setText("삼성카드");
int[] _jspx_push_body_count_spring_005fmessage_005f48 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f48 = _jspx_th_spring_005fmessage_005f48.doStartTag();
if (_jspx_th_spring_005fmessage_005f48.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f48[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f48.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f48.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f48);
_jspx_th_spring_005fmessage_005f48_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f48, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f48_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f49(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f49 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f49_reused = false;
try {
_jspx_th_spring_005fmessage_005f49.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f49.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(192,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f49.setCode("mypage.order.lbl.payment.creditcard.cardname2");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(192,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f49.setText("한미카드");
int[] _jspx_push_body_count_spring_005fmessage_005f49 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f49 = _jspx_th_spring_005fmessage_005f49.doStartTag();
if (_jspx_th_spring_005fmessage_005f49.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f49[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f49.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f49.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f49);
_jspx_th_spring_005fmessage_005f49_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f49, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f49_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f50(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f50 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f50_reused = false;
try {
_jspx_th_spring_005fmessage_005f50.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f50.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(196,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f50.setCode("mypage.order.lbl.payment.creditcard.cardname3");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(196,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f50.setText("외환카드");
int[] _jspx_push_body_count_spring_005fmessage_005f50 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f50 = _jspx_th_spring_005fmessage_005f50.doStartTag();
if (_jspx_th_spring_005fmessage_005f50.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f50[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f50.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f50.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f50);
_jspx_th_spring_005fmessage_005f50_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f50, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f50_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f51(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f51 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f51_reused = false;
try {
_jspx_th_spring_005fmessage_005f51.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f51.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(198,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f51.setCode("mypage.order.lbl.payment.creditcard.cardname4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(198,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f51.setText("수협카드");
int[] _jspx_push_body_count_spring_005fmessage_005f51 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f51 = _jspx_th_spring_005fmessage_005f51.doStartTag();
if (_jspx_th_spring_005fmessage_005f51.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f51[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f51.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f51.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f51);
_jspx_th_spring_005fmessage_005f51_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f51, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f51_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f52(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f52 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f52_reused = false;
try {
_jspx_th_spring_005fmessage_005f52.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f52.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(202,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f52.setCode("mypage.order.lbl.payment.creditcard.cardname5");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(202,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f52.setText("롯데카드");
int[] _jspx_push_body_count_spring_005fmessage_005f52 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f52 = _jspx_th_spring_005fmessage_005f52.doStartTag();
if (_jspx_th_spring_005fmessage_005f52.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f52[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f52.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f52.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f52);
_jspx_th_spring_005fmessage_005f52_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f52, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f52_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f53(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f53 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f53_reused = false;
try {
_jspx_th_spring_005fmessage_005f53.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f53.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(204,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f53.setCode("mypage.order.lbl.payment.creditcard.cardname6");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(204,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f53.setText("전북카드");
int[] _jspx_push_body_count_spring_005fmessage_005f53 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f53 = _jspx_th_spring_005fmessage_005f53.doStartTag();
if (_jspx_th_spring_005fmessage_005f53.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f53[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f53.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f53.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f53);
_jspx_th_spring_005fmessage_005f53_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f53, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f53_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f54(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f54 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f54_reused = false;
try {
_jspx_th_spring_005fmessage_005f54.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f54.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(208,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f54.setCode("mypage.order.lbl.payment.creditcard.cardname7");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(208,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f54.setText("현대카드");
int[] _jspx_push_body_count_spring_005fmessage_005f54 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f54 = _jspx_th_spring_005fmessage_005f54.doStartTag();
if (_jspx_th_spring_005fmessage_005f54.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f54[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f54.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f54.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f54);
_jspx_th_spring_005fmessage_005f54_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f54, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f54_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f55(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f55 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f55_reused = false;
try {
_jspx_th_spring_005fmessage_005f55.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f55.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(210,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f55.setCode("mypage.order.lbl.payment.creditcard.cardname8");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(210,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f55.setText("광주카드");
int[] _jspx_push_body_count_spring_005fmessage_005f55 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f55 = _jspx_th_spring_005fmessage_005f55.doStartTag();
if (_jspx_th_spring_005fmessage_005f55.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f55[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f55.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f55.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f55);
_jspx_th_spring_005fmessage_005f55_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f55, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f55_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f56(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f56 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f56_reused = false;
try {
_jspx_th_spring_005fmessage_005f56.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f56.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(214,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f56.setCode("mypage.order.lbl.payment.creditcard.cardname9");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(214,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f56.setText("신한카드");
int[] _jspx_push_body_count_spring_005fmessage_005f56 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f56 = _jspx_th_spring_005fmessage_005f56.doStartTag();
if (_jspx_th_spring_005fmessage_005f56.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f56[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f56.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f56.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f56);
_jspx_th_spring_005fmessage_005f56_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f56, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f56_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f57(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f57 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f57_reused = false;
try {
_jspx_th_spring_005fmessage_005f57.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f57.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(216,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f57.setCode("mypage.order.lbl.payment.creditcard.cardname10");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(216,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f57.setText("제주카드");
int[] _jspx_push_body_count_spring_005fmessage_005f57 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f57 = _jspx_th_spring_005fmessage_005f57.doStartTag();
if (_jspx_th_spring_005fmessage_005f57.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f57[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f57.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f57.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f57);
_jspx_th_spring_005fmessage_005f57_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f57, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f57_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f58(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f58 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f58_reused = false;
try {
_jspx_th_spring_005fmessage_005f58.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f58.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(220,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f58.setCode("mypage.order.lbl.payment.creditcard.cardname11");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(220,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f58.setText("시티카드");
int[] _jspx_push_body_count_spring_005fmessage_005f58 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f58 = _jspx_th_spring_005fmessage_005f58.doStartTag();
if (_jspx_th_spring_005fmessage_005f58.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f58[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f58.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f58.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f58);
_jspx_th_spring_005fmessage_005f58_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f58, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f58_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f59(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f59 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f59_reused = false;
try {
_jspx_th_spring_005fmessage_005f59.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f59.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(222,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f59.setCode("mypage.order.lbl.payment.creditcard.cardname12");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(222,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f59.setText("조흥카드");
int[] _jspx_push_body_count_spring_005fmessage_005f59 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f59 = _jspx_th_spring_005fmessage_005f59.doStartTag();
if (_jspx_th_spring_005fmessage_005f59.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f59[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f59.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f59.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f59);
_jspx_th_spring_005fmessage_005f59_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f59, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f59_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f60(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f60 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f60_reused = false;
try {
_jspx_th_spring_005fmessage_005f60.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f60.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(226,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f60.setCode("mypage.order.lbl.payment.creditcard.cardname13");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(226,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f60.setText("신세계 한미카드");
int[] _jspx_push_body_count_spring_005fmessage_005f60 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f60 = _jspx_th_spring_005fmessage_005f60.doStartTag();
if (_jspx_th_spring_005fmessage_005f60.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f60[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f60.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f60.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f60);
_jspx_th_spring_005fmessage_005f60_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f60, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f60_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f61(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f61 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f61_reused = false;
try {
_jspx_th_spring_005fmessage_005f61.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f61.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(228,29) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f61.setCode("mypage.order.lbl.payment.creditcard.cardname14");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(228,29) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f61.setText("신한(구LG)");
int[] _jspx_push_body_count_spring_005fmessage_005f61 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f61 = _jspx_th_spring_005fmessage_005f61.doStartTag();
if (_jspx_th_spring_005fmessage_005f61.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f61[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f61.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f61.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f61);
_jspx_th_spring_005fmessage_005f61_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f61, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f61_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f62(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f62 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f62_reused = false;
try {
_jspx_th_spring_005fmessage_005f62.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f62.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(235,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f62.setCode("mypage.order.lbl.payment.creditcard.info33");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(235,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f62.setText("안심클릭 대상카드");
int[] _jspx_push_body_count_spring_005fmessage_005f62 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f62 = _jspx_th_spring_005fmessage_005f62.doStartTag();
if (_jspx_th_spring_005fmessage_005f62.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f62[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f62.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f62.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f62);
_jspx_th_spring_005fmessage_005f62_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f62, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f62_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f63(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f63 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f63_reused = false;
try {
_jspx_th_spring_005fmessage_005f63.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f63.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(238,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f63.setCode("mypage.order.lbl.payment.creditcard.info34");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(238,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f63.setText("국민카드/ BC카드/ 우리카드를 제외한 모든 신용카드");
int[] _jspx_push_body_count_spring_005fmessage_005f63 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f63 = _jspx_th_spring_005fmessage_005f63.doStartTag();
if (_jspx_th_spring_005fmessage_005f63.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f63[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f63.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f63.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f63);
_jspx_th_spring_005fmessage_005f63_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f63, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f63_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f64(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f64 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f64_reused = false;
try {
_jspx_th_spring_005fmessage_005f64.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f64.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(239,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f64.setCode("mypage.order.lbl.payment.creditcard.info35");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(239,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f64.setText("삼성/ 외환/ 롯데/ 현대/ 신한/ 시티/ 신세계한미/ 한미/ 수협/ 전북/ 광주/ 제주/ 조흥/ 신한(구 LG)");
int[] _jspx_push_body_count_spring_005fmessage_005f64 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f64 = _jspx_th_spring_005fmessage_005f64.doStartTag();
if (_jspx_th_spring_005fmessage_005f64.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f64[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f64.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f64.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f64);
_jspx_th_spring_005fmessage_005f64_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f64, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f64_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f65(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f65 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f65_reused = false;
try {
_jspx_th_spring_005fmessage_005f65.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f65.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(240,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f65.setCode("mypage.order.lbl.payment.creditcard.info36");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(240,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f65.setText("국내전용카드/마스터/JCB 모두 포함");
int[] _jspx_push_body_count_spring_005fmessage_005f65 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f65 = _jspx_th_spring_005fmessage_005f65.doStartTag();
if (_jspx_th_spring_005fmessage_005f65.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f65[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f65.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f65.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f65);
_jspx_th_spring_005fmessage_005f65_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f65, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f65_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f66(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f66 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f66_reused = false;
try {
_jspx_th_spring_005fmessage_005f66.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f66.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(243,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f66.setCode("mypage.order.lbl.payment.creditcard.info37");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(243,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f66.setText("안심클릭 인증방식");
int[] _jspx_push_body_count_spring_005fmessage_005f66 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f66 = _jspx_th_spring_005fmessage_005f66.doStartTag();
if (_jspx_th_spring_005fmessage_005f66.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f66[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f66.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f66.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f66);
_jspx_th_spring_005fmessage_005f66_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f66, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f66_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f67(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f67 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f67_reused = false;
try {
_jspx_th_spring_005fmessage_005f67.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f67.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(246,22) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f67.setCode("mypage.order.lbl.payment.creditcard.info38");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(246,22) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f67.setText("카드사가 제공하는 팝업창에서 선택가능");
int[] _jspx_push_body_count_spring_005fmessage_005f67 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f67 = _jspx_th_spring_005fmessage_005f67.doStartTag();
if (_jspx_th_spring_005fmessage_005f67.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f67[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f67.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f67.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f67);
_jspx_th_spring_005fmessage_005f67_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f67, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f67_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f68(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f68 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f68_reused = false;
try {
_jspx_th_spring_005fmessage_005f68.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f68.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(246,126) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f68.setCode("mypage.order.lbl.payment.creditcard.info39");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(246,126) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f68.setText("안심클릭, 공인인증 중 1개 선택 (안심클릭만으로 결제 가능)");
int[] _jspx_push_body_count_spring_005fmessage_005f68 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f68 = _jspx_th_spring_005fmessage_005f68.doStartTag();
if (_jspx_th_spring_005fmessage_005f68.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f68[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f68.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f68.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f68);
_jspx_th_spring_005fmessage_005f68_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f68, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f68_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f69(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f69 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f69_reused = false;
try {
_jspx_th_spring_005fmessage_005f69.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f69.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(249,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f69.setCode("mypage.order.lbl.payment.creditcard.info40");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(249,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f69.setText("결제페이지 입력정보");
int[] _jspx_push_body_count_spring_005fmessage_005f69 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f69 = _jspx_th_spring_005fmessage_005f69.doStartTag();
if (_jspx_th_spring_005fmessage_005f69.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f69[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f69.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f69.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f69);
_jspx_th_spring_005fmessage_005f69_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f69, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f69_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f70(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f70 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f70_reused = false;
try {
_jspx_th_spring_005fmessage_005f70.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f70.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(252,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f70.setCode("mypage.order.lbl.payment.creditcard.info41");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(252,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f70.setText("기존:카드번호, 유효기간, 주민번호, 카드비밀번호, 할부기간 입력 안심클릭 시행 후 : 카드번호, 할부기간만 입력");
int[] _jspx_push_body_count_spring_005fmessage_005f70 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f70 = _jspx_th_spring_005fmessage_005f70.doStartTag();
if (_jspx_th_spring_005fmessage_005f70.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f70[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f70.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f70.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f70);
_jspx_th_spring_005fmessage_005f70_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f70, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f70_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f71(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f71 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f71_reused = false;
try {
_jspx_th_spring_005fmessage_005f71.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f71.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(255,38) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f71.setCode("mypage.order.lbl.payment.creditcard.info42");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(255,38) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f71.setText("등록방법");
int[] _jspx_push_body_count_spring_005fmessage_005f71 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f71 = _jspx_th_spring_005fmessage_005f71.doStartTag();
if (_jspx_th_spring_005fmessage_005f71.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f71[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f71.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f71.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f71);
_jspx_th_spring_005fmessage_005f71_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f71, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f71_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f72(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f72 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f72_reused = false;
try {
_jspx_th_spring_005fmessage_005f72.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f72.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(258,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f72.setCode("mypage.order.lbl.payment.creditcard.info43");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(258,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f72.setText("주문/결제 페이지에서 카드사에서 제공하는 팝업화면 통해 바로 등록 및 사용 가능");
int[] _jspx_push_body_count_spring_005fmessage_005f72 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f72 = _jspx_th_spring_005fmessage_005f72.doStartTag();
if (_jspx_th_spring_005fmessage_005f72.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f72[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f72.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f72.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f72);
_jspx_th_spring_005fmessage_005f72_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f72, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f72_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f73(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f73 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f73_reused = false;
try {
_jspx_th_spring_005fmessage_005f73.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f73.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(259,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f73.setCode("mypage.order.lbl.payment.creditcard.info44");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(259,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f73.setText("고객님이 소유한 신용카드의 카드사 홈페이지 통해 등록 가능");
int[] _jspx_push_body_count_spring_005fmessage_005f73 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f73 = _jspx_th_spring_005fmessage_005f73.doStartTag();
if (_jspx_th_spring_005fmessage_005f73.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f73[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f73.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f73.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f73);
_jspx_th_spring_005fmessage_005f73_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f73, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f73_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f74(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f74 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f74_reused = false;
try {
_jspx_th_spring_005fmessage_005f74.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f74.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(260,14) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f74.setCode("mypage.order.lbl.payment.creditcard.info45");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(260,14) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f74.setText("VISA카드를 가지고 계신 고객님들 중, 이미 VISA안심클릭을 등록해 사용하시고 계신 분은 별도의 안심 클릭 등록절차 없이 기존대로 결제가 가능하십니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f74 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f74 = _jspx_th_spring_005fmessage_005f74.doStartTag();
if (_jspx_th_spring_005fmessage_005f74.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f74[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f74.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f74.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f74);
_jspx_th_spring_005fmessage_005f74_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f74, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f74_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f75(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f75 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f75_reused = false;
try {
_jspx_th_spring_005fmessage_005f75.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f75.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(263,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f75.setCode("mypage.order.lbl.payment.creditcard.info46");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(263,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f75.setText("추가적으로 더 궁금한 사항은 1:1 고객상담으로 문의 주시기 바랍니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f75 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f75 = _jspx_th_spring_005fmessage_005f75.doStartTag();
if (_jspx_th_spring_005fmessage_005f75.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f75[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f75.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f75.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f75);
_jspx_th_spring_005fmessage_005f75_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f75, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f75_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f76(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f76 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f76_reused = false;
try {
_jspx_th_spring_005fmessage_005f76.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f76.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(266,100) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f76.setCode("mypage.order.list.btn.inquiry");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(266,100) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f76.setText("1:1 고객상담");
int[] _jspx_push_body_count_spring_005fmessage_005f76 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f76 = _jspx_th_spring_005fmessage_005f76.doStartTag();
if (_jspx_th_spring_005fmessage_005f76.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f76[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f76.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f76.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f76);
_jspx_th_spring_005fmessage_005f76_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f76, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f76_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f77(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f77 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f77_reused = false;
try {
_jspx_th_spring_005fmessage_005f77.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f77.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(277,26) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f77.setCode("mypage.order.lbl.payment.naverpay.info");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(277,26) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f77.setText("네이버페이 이용 안내");
int[] _jspx_push_body_count_spring_005fmessage_005f77 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f77 = _jspx_th_spring_005fmessage_005f77.doStartTag();
if (_jspx_th_spring_005fmessage_005f77.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f77[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f77.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f77.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f77);
_jspx_th_spring_005fmessage_005f77_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f77, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f77_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f78(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f78 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f78_reused = false;
try {
_jspx_th_spring_005fmessage_005f78.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f78.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(279,11) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f78.setCode("mypage.order.lbl.payment.naverpay.info1");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(279,11) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f78.setText("네이버페이는 네이버ID로 별도 앱 설치 없이 신용카드 또는 은행계좌 정보를 등록하여 네이버페이 비밀번호로 결제할 수 있는 간편결제 서비스입니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f78 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f78 = _jspx_th_spring_005fmessage_005f78.doStartTag();
if (_jspx_th_spring_005fmessage_005f78.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f78[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f78.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f78.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f78);
_jspx_th_spring_005fmessage_005f78_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f78, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f78_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f79(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f79 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f79_reused = false;
try {
_jspx_th_spring_005fmessage_005f79.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f79.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(280,11) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f79.setCode("mypage.order.lbl.payment.naverpay.info2");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(280,11) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f79.setText("주문 변경 시 카드사 혜택 및 할부 적용 여부는 해당 카드사 정책에 따라 변경될 수 있습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f79 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f79 = _jspx_th_spring_005fmessage_005f79.doStartTag();
if (_jspx_th_spring_005fmessage_005f79.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f79[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f79.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f79.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f79);
_jspx_th_spring_005fmessage_005f79_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f79, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f79_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f80(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f80 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f80_reused = false;
try {
_jspx_th_spring_005fmessage_005f80.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f80.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(282,21) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f80.setCode("mypage.order.lbl.payment.naverpay.info3");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(282,21) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f80.setText("결제 가능한 신용카드 : ");
int[] _jspx_push_body_count_spring_005fmessage_005f80 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f80 = _jspx_th_spring_005fmessage_005f80.doStartTag();
if (_jspx_th_spring_005fmessage_005f80.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f80[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f80.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f80.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f80);
_jspx_th_spring_005fmessage_005f80_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f80, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f80_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f81(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f81 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f81_reused = false;
try {
_jspx_th_spring_005fmessage_005f81.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f81.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(282,120) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f81.setCode("mypage.order.lbl.payment.naverpay.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(282,120) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f81.setText("신한, 삼성, 현대, BC, 국민, 하나, 롯데, NH농협, 씨티");
int[] _jspx_push_body_count_spring_005fmessage_005f81 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f81 = _jspx_th_spring_005fmessage_005f81.doStartTag();
if (_jspx_th_spring_005fmessage_005f81.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f81[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f81.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f81.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f81);
_jspx_th_spring_005fmessage_005f81_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f81, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f81_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f82(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f82 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f82_reused = false;
try {
_jspx_th_spring_005fmessage_005f82.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f82.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(283,21) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f82.setCode("mypage.order.lbl.payment.naverpay.info5");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(283,21) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f82.setText("결제 가능한 은행 : ");
int[] _jspx_push_body_count_spring_005fmessage_005f82 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f82 = _jspx_th_spring_005fmessage_005f82.doStartTag();
if (_jspx_th_spring_005fmessage_005f82.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f82[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f82.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f82.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f82);
_jspx_th_spring_005fmessage_005f82_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f82, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f82_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f83(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f83 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f83_reused = false;
try {
_jspx_th_spring_005fmessage_005f83.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f83.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(283,118) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f83.setCode("mypage.order.lbl.payment.naverpay.info6");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(283,118) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f83.setText("NH농협, 국민, 신한, 우리, 기업, SC제일, 부산, 경남, 수협, 우체국");
int[] _jspx_push_body_count_spring_005fmessage_005f83 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f83 = _jspx_th_spring_005fmessage_005f83.doStartTag();
if (_jspx_th_spring_005fmessage_005f83.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f83[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f83.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f83.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f83);
_jspx_th_spring_005fmessage_005f83_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f83, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f83_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f84(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f84 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f84_reused = false;
try {
_jspx_th_spring_005fmessage_005f84.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f84.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(286,11) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f84.setCode("mypage.order.lbl.payment.naverpay.info7");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(286,11) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f84.setText("네이버페이 카드 간편결제는 네이버페이에서 제공하는 카드사 별 무이자, 청구할인 혜택을 받을 수 있습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f84 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f84 = _jspx_th_spring_005fmessage_005f84.doStartTag();
if (_jspx_th_spring_005fmessage_005f84.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f84[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f84.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f84.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f84);
_jspx_th_spring_005fmessage_005f84_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f84, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f84_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f85(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f85 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f85_reused = false;
try {
_jspx_th_spring_005fmessage_005f85.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f85.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(293,26) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f85.setCode("mypage.order.lbl.payment.escrow.info");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(293,26) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f85.setText("구매안전 에스크로 서비스 사용");
int[] _jspx_push_body_count_spring_005fmessage_005f85 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f85 = _jspx_th_spring_005fmessage_005f85.doStartTag();
if (_jspx_th_spring_005fmessage_005f85.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f85[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f85.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f85.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f85);
_jspx_th_spring_005fmessage_005f85_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f85, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f85_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f86(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f86 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f86_reused = false;
try {
_jspx_th_spring_005fmessage_005f86.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f86.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(298,15) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f86.setCode("mypage.order.btn.select");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(298,15) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f86.setText("선택");
int[] _jspx_push_body_count_spring_005fmessage_005f86 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f86 = _jspx_th_spring_005fmessage_005f86.doStartTag();
if (_jspx_th_spring_005fmessage_005f86.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f86[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f86.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f86.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f86);
_jspx_th_spring_005fmessage_005f86_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f86, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f86_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f87(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f87 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f87_reused = false;
try {
_jspx_th_spring_005fmessage_005f87.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f87.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(299,40) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f87.setCode("mypage.order.lbl.payment.escrow.use");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(299,40) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f87.setText("구매안전 에스크로 사용");
int[] _jspx_push_body_count_spring_005fmessage_005f87 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f87 = _jspx_th_spring_005fmessage_005f87.doStartTag();
if (_jspx_th_spring_005fmessage_005f87.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f87[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f87.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f87.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f87);
_jspx_th_spring_005fmessage_005f87_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f87, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f87_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f88(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f88 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f88_reused = false;
try {
_jspx_th_spring_005fmessage_005f88.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f88.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(304,15) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f88.setCode("mypage.order.btn.select");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(304,15) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f88.setText("선택");
int[] _jspx_push_body_count_spring_005fmessage_005f88 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f88 = _jspx_th_spring_005fmessage_005f88.doStartTag();
if (_jspx_th_spring_005fmessage_005f88.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f88[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f88.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f88.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f88);
_jspx_th_spring_005fmessage_005f88_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f88, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f88_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f89(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f89 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f89_reused = false;
try {
_jspx_th_spring_005fmessage_005f89.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f89.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(305,40) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f89.setCode("mypage.order.lbl.payment.escrow.nouse");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(305,40) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f89.setText("구매안전 에스크로 사용 안함");
int[] _jspx_push_body_count_spring_005fmessage_005f89 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f89 = _jspx_th_spring_005fmessage_005f89.doStartTag();
if (_jspx_th_spring_005fmessage_005f89.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f89[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f89.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f89.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f89);
_jspx_th_spring_005fmessage_005f89_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f89, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f89_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f90(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f90 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f90_reused = false;
try {
_jspx_th_spring_005fmessage_005f90.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f90.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(309,11) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f90.setCode("mypage.order.lbl.payment.rltmbnk.info1");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(309,11) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f90.setText("실시간 계좌이체는 결제와 동시에 입출금이 처리됩니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f90 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f90 = _jspx_th_spring_005fmessage_005f90.doStartTag();
if (_jspx_th_spring_005fmessage_005f90.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f90[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f90.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f90.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f90);
_jspx_th_spring_005fmessage_005f90_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f90, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f90_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f91(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f91 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f91_reused = false;
try {
_jspx_th_spring_005fmessage_005f91.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f91.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(310,11) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f91.setCode("mypage.order.lbl.payment.rltmbnk.info2");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(310,11) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f91.setText("이체 수수료는 부과되지 않습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f91 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f91 = _jspx_th_spring_005fmessage_005f91.doStartTag();
if (_jspx_th_spring_005fmessage_005f91.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f91[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f91.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f91.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f91);
_jspx_th_spring_005fmessage_005f91_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f91, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f91_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f92(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f92 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f92_reused = false;
try {
_jspx_th_spring_005fmessage_005f92.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f92.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(313,27) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f92.setCode("mypage.order.lbl.payment.rltmbnk.info3");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(313,27) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f92.setText("은행별 실시간 계좌이체 이용 가능 시간");
int[] _jspx_push_body_count_spring_005fmessage_005f92 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f92 = _jspx_th_spring_005fmessage_005f92.doStartTag();
if (_jspx_th_spring_005fmessage_005f92.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f92[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f92.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f92.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f92);
_jspx_th_spring_005fmessage_005f92_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f92, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f92_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f93(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f93 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f93_reused = false;
try {
_jspx_th_spring_005fmessage_005f93.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f93.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(327,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f93.setCode("mypage.order.lbl.payment.rltmbnk.bank1");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(327,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f93.setText("경남은행");
int[] _jspx_push_body_count_spring_005fmessage_005f93 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f93 = _jspx_th_spring_005fmessage_005f93.doStartTag();
if (_jspx_th_spring_005fmessage_005f93.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f93[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f93.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f93.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f93);
_jspx_th_spring_005fmessage_005f93_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f93, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f93_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f94(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f94 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f94_reused = false;
try {
_jspx_th_spring_005fmessage_005f94.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f94.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(328,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f94.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(328,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f94.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f94 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f94 = _jspx_th_spring_005fmessage_005f94.doStartTag();
if (_jspx_th_spring_005fmessage_005f94.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f94[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f94.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f94.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f94);
_jspx_th_spring_005fmessage_005f94_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f94, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f94_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f95(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f95 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f95_reused = false;
try {
_jspx_th_spring_005fmessage_005f95.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f95.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(332,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f95.setCode("mypage.order.lbl.payment.rltmbnk.bank2");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(332,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f95.setText("국민은행");
int[] _jspx_push_body_count_spring_005fmessage_005f95 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f95 = _jspx_th_spring_005fmessage_005f95.doStartTag();
if (_jspx_th_spring_005fmessage_005f95.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f95[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f95.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f95.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f95);
_jspx_th_spring_005fmessage_005f95_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f95, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f95_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f96(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f96 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f96_reused = false;
try {
_jspx_th_spring_005fmessage_005f96.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f96.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(333,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f96.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(333,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f96.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f96 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f96 = _jspx_th_spring_005fmessage_005f96.doStartTag();
if (_jspx_th_spring_005fmessage_005f96.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f96[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f96.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f96.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f96);
_jspx_th_spring_005fmessage_005f96_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f96, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f96_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f97(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f97 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f97_reused = false;
try {
_jspx_th_spring_005fmessage_005f97.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f97.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(337,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f97.setCode("mypage.order.lbl.payment.rltmbnk.bank3");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(337,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f97.setText("광주은행");
int[] _jspx_push_body_count_spring_005fmessage_005f97 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f97 = _jspx_th_spring_005fmessage_005f97.doStartTag();
if (_jspx_th_spring_005fmessage_005f97.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f97[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f97.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f97.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f97);
_jspx_th_spring_005fmessage_005f97_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f97, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f97_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f98(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f98 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f98_reused = false;
try {
_jspx_th_spring_005fmessage_005f98.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f98.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(338,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f98.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(338,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f98.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f98 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f98 = _jspx_th_spring_005fmessage_005f98.doStartTag();
if (_jspx_th_spring_005fmessage_005f98.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f98[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f98.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f98.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f98);
_jspx_th_spring_005fmessage_005f98_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f98, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f98_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f99(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f99 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f99_reused = false;
try {
_jspx_th_spring_005fmessage_005f99.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f99.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(342,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f99.setCode("mypage.order.lbl.payment.rltmbnk.bank4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(342,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f99.setText("기업은행");
int[] _jspx_push_body_count_spring_005fmessage_005f99 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f99 = _jspx_th_spring_005fmessage_005f99.doStartTag();
if (_jspx_th_spring_005fmessage_005f99.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f99[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f99.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f99.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f99);
_jspx_th_spring_005fmessage_005f99_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f99, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f99_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f100(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f100 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f100_reused = false;
try {
_jspx_th_spring_005fmessage_005f100.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f100.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(343,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f100.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(343,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f100.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f100 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f100 = _jspx_th_spring_005fmessage_005f100.doStartTag();
if (_jspx_th_spring_005fmessage_005f100.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f100[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f100.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f100.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f100);
_jspx_th_spring_005fmessage_005f100_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f100, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f100_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f101(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f101 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f101_reused = false;
try {
_jspx_th_spring_005fmessage_005f101.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f101.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(347,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f101.setCode("mypage.order.lbl.payment.rltmbnk.bank5");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(347,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f101.setText("농협");
int[] _jspx_push_body_count_spring_005fmessage_005f101 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f101 = _jspx_th_spring_005fmessage_005f101.doStartTag();
if (_jspx_th_spring_005fmessage_005f101.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f101[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f101.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f101.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f101);
_jspx_th_spring_005fmessage_005f101_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f101, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f101_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f102(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f102 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f102_reused = false;
try {
_jspx_th_spring_005fmessage_005f102.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f102.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(348,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f102.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(348,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f102.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f102 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f102 = _jspx_th_spring_005fmessage_005f102.doStartTag();
if (_jspx_th_spring_005fmessage_005f102.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f102[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f102.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f102.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f102);
_jspx_th_spring_005fmessage_005f102_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f102, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f102_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f103(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f103 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f103_reused = false;
try {
_jspx_th_spring_005fmessage_005f103.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f103.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(352,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f103.setCode("mypage.order.lbl.payment.rltmbnk.bank6");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(352,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f103.setText("대구은행");
int[] _jspx_push_body_count_spring_005fmessage_005f103 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f103 = _jspx_th_spring_005fmessage_005f103.doStartTag();
if (_jspx_th_spring_005fmessage_005f103.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f103[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f103.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f103.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f103);
_jspx_th_spring_005fmessage_005f103_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f103, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f103_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f104(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f104 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f104_reused = false;
try {
_jspx_th_spring_005fmessage_005f104.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f104.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(353,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f104.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(353,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f104.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f104 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f104 = _jspx_th_spring_005fmessage_005f104.doStartTag();
if (_jspx_th_spring_005fmessage_005f104.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f104[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f104.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f104.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f104);
_jspx_th_spring_005fmessage_005f104_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f104, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f104_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f105(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f105 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f105_reused = false;
try {
_jspx_th_spring_005fmessage_005f105.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f105.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(357,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f105.setCode("mypage.order.lbl.payment.rltmbnk.bank7");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(357,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f105.setText("부산은행");
int[] _jspx_push_body_count_spring_005fmessage_005f105 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f105 = _jspx_th_spring_005fmessage_005f105.doStartTag();
if (_jspx_th_spring_005fmessage_005f105.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f105[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f105.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f105.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f105);
_jspx_th_spring_005fmessage_005f105_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f105, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f105_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f106(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f106 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f106_reused = false;
try {
_jspx_th_spring_005fmessage_005f106.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f106.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(358,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f106.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(358,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f106.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f106 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f106 = _jspx_th_spring_005fmessage_005f106.doStartTag();
if (_jspx_th_spring_005fmessage_005f106.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f106[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f106.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f106.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f106);
_jspx_th_spring_005fmessage_005f106_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f106, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f106_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f107(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f107 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f107_reused = false;
try {
_jspx_th_spring_005fmessage_005f107.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f107.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(362,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f107.setCode("mypage.order.lbl.payment.rltmbnk.bank8");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(362,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f107.setText("새마을금고");
int[] _jspx_push_body_count_spring_005fmessage_005f107 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f107 = _jspx_th_spring_005fmessage_005f107.doStartTag();
if (_jspx_th_spring_005fmessage_005f107.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f107[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f107.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f107.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f107);
_jspx_th_spring_005fmessage_005f107_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f107, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f107_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f108(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f108 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f108_reused = false;
try {
_jspx_th_spring_005fmessage_005f108.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f108.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(363,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f108.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(363,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f108.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f108 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f108 = _jspx_th_spring_005fmessage_005f108.doStartTag();
if (_jspx_th_spring_005fmessage_005f108.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f108[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f108.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f108.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f108);
_jspx_th_spring_005fmessage_005f108_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f108, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f108_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f109(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f109 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f109_reused = false;
try {
_jspx_th_spring_005fmessage_005f109.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f109.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(367,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f109.setCode("mypage.order.lbl.payment.rltmbnk.bank9");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(367,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f109.setText("수협");
int[] _jspx_push_body_count_spring_005fmessage_005f109 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f109 = _jspx_th_spring_005fmessage_005f109.doStartTag();
if (_jspx_th_spring_005fmessage_005f109.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f109[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f109.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f109.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f109);
_jspx_th_spring_005fmessage_005f109_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f109, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f109_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f110(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f110 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f110_reused = false;
try {
_jspx_th_spring_005fmessage_005f110.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f110.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(368,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f110.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(368,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f110.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f110 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f110 = _jspx_th_spring_005fmessage_005f110.doStartTag();
if (_jspx_th_spring_005fmessage_005f110.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f110[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f110.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f110.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f110);
_jspx_th_spring_005fmessage_005f110_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f110, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f110_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f111(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f111 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f111_reused = false;
try {
_jspx_th_spring_005fmessage_005f111.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f111.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(372,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f111.setCode("mypage.order.lbl.payment.rltmbnk.bank10");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(372,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f111.setText("신한은행");
int[] _jspx_push_body_count_spring_005fmessage_005f111 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f111 = _jspx_th_spring_005fmessage_005f111.doStartTag();
if (_jspx_th_spring_005fmessage_005f111.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f111[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f111.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f111.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f111);
_jspx_th_spring_005fmessage_005f111_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f111, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f111_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f112(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f112 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f112_reused = false;
try {
_jspx_th_spring_005fmessage_005f112.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f112.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(373,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f112.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(373,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f112.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f112 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f112 = _jspx_th_spring_005fmessage_005f112.doStartTag();
if (_jspx_th_spring_005fmessage_005f112.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f112[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f112.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f112.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f112);
_jspx_th_spring_005fmessage_005f112_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f112, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f112_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f113(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f113 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f113_reused = false;
try {
_jspx_th_spring_005fmessage_005f113.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f113.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(377,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f113.setCode("mypage.order.lbl.payment.rltmbnk.bank11");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(377,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f113.setText("우리은행");
int[] _jspx_push_body_count_spring_005fmessage_005f113 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f113 = _jspx_th_spring_005fmessage_005f113.doStartTag();
if (_jspx_th_spring_005fmessage_005f113.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f113[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f113.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f113.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f113);
_jspx_th_spring_005fmessage_005f113_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f113, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f113_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f114(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f114 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f114_reused = false;
try {
_jspx_th_spring_005fmessage_005f114.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f114.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(378,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f114.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(378,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f114.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f114 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f114 = _jspx_th_spring_005fmessage_005f114.doStartTag();
if (_jspx_th_spring_005fmessage_005f114.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f114[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f114.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f114.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f114);
_jspx_th_spring_005fmessage_005f114_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f114, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f114_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f115(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f115 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f115_reused = false;
try {
_jspx_th_spring_005fmessage_005f115.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f115.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(382,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f115.setCode("mypage.order.lbl.payment.rltmbnk.bank12");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(382,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f115.setText("우체국");
int[] _jspx_push_body_count_spring_005fmessage_005f115 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f115 = _jspx_th_spring_005fmessage_005f115.doStartTag();
if (_jspx_th_spring_005fmessage_005f115.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f115[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f115.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f115.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f115);
_jspx_th_spring_005fmessage_005f115_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f115, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f115_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f116(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f116 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f116_reused = false;
try {
_jspx_th_spring_005fmessage_005f116.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f116.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(383,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f116.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(383,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f116.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f116 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f116 = _jspx_th_spring_005fmessage_005f116.doStartTag();
if (_jspx_th_spring_005fmessage_005f116.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f116[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f116.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f116.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f116);
_jspx_th_spring_005fmessage_005f116_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f116, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f116_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f117(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f117 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f117_reused = false;
try {
_jspx_th_spring_005fmessage_005f117.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f117.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(387,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f117.setCode("mypage.order.lbl.payment.rltmbnk.bank13");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(387,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f117.setText("외환은행");
int[] _jspx_push_body_count_spring_005fmessage_005f117 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f117 = _jspx_th_spring_005fmessage_005f117.doStartTag();
if (_jspx_th_spring_005fmessage_005f117.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f117[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f117.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f117.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f117);
_jspx_th_spring_005fmessage_005f117_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f117, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f117_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f118(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f118 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f118_reused = false;
try {
_jspx_th_spring_005fmessage_005f118.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f118.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(388,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f118.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(388,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f118.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f118 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f118 = _jspx_th_spring_005fmessage_005f118.doStartTag();
if (_jspx_th_spring_005fmessage_005f118.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f118[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f118.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f118.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f118);
_jspx_th_spring_005fmessage_005f118_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f118, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f118_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f119(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f119 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f119_reused = false;
try {
_jspx_th_spring_005fmessage_005f119.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f119.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(392,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f119.setCode("mypage.order.lbl.payment.rltmbnk.bank14");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(392,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f119.setText("전북은행");
int[] _jspx_push_body_count_spring_005fmessage_005f119 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f119 = _jspx_th_spring_005fmessage_005f119.doStartTag();
if (_jspx_th_spring_005fmessage_005f119.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f119[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f119.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f119.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f119);
_jspx_th_spring_005fmessage_005f119_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f119, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f119_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f120(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f120 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f120_reused = false;
try {
_jspx_th_spring_005fmessage_005f120.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f120.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(393,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f120.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(393,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f120.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f120 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f120 = _jspx_th_spring_005fmessage_005f120.doStartTag();
if (_jspx_th_spring_005fmessage_005f120.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f120[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f120.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f120.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f120);
_jspx_th_spring_005fmessage_005f120_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f120, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f120_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f121(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f121 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f121_reused = false;
try {
_jspx_th_spring_005fmessage_005f121.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f121.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(397,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f121.setCode("mypage.order.lbl.payment.rltmbnk.bank15");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(397,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f121.setText("조흥은행");
int[] _jspx_push_body_count_spring_005fmessage_005f121 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f121 = _jspx_th_spring_005fmessage_005f121.doStartTag();
if (_jspx_th_spring_005fmessage_005f121.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f121[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f121.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f121.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f121);
_jspx_th_spring_005fmessage_005f121_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f121, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f121_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f122(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f122 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f122_reused = false;
try {
_jspx_th_spring_005fmessage_005f122.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f122.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(398,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f122.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(398,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f122.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f122 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f122 = _jspx_th_spring_005fmessage_005f122.doStartTag();
if (_jspx_th_spring_005fmessage_005f122.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f122[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f122.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f122.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f122);
_jspx_th_spring_005fmessage_005f122_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f122, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f122_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f123(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f123 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f123_reused = false;
try {
_jspx_th_spring_005fmessage_005f123.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f123.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(402,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f123.setCode("mypage.order.lbl.payment.rltmbnk.bank16");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(402,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f123.setText("제일은행");
int[] _jspx_push_body_count_spring_005fmessage_005f123 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f123 = _jspx_th_spring_005fmessage_005f123.doStartTag();
if (_jspx_th_spring_005fmessage_005f123.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f123[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f123.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f123.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f123);
_jspx_th_spring_005fmessage_005f123_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f123, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f123_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f124(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f124 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f124_reused = false;
try {
_jspx_th_spring_005fmessage_005f124.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f124.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(403,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f124.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(403,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f124.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f124 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f124 = _jspx_th_spring_005fmessage_005f124.doStartTag();
if (_jspx_th_spring_005fmessage_005f124.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f124[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f124.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f124.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f124);
_jspx_th_spring_005fmessage_005f124_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f124, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f124_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f125(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f125 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f125_reused = false;
try {
_jspx_th_spring_005fmessage_005f125.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f125.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(407,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f125.setCode("mypage.order.lbl.payment.rltmbnk.bank17");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(407,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f125.setText("제주은행");
int[] _jspx_push_body_count_spring_005fmessage_005f125 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f125 = _jspx_th_spring_005fmessage_005f125.doStartTag();
if (_jspx_th_spring_005fmessage_005f125.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f125[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f125.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f125.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f125);
_jspx_th_spring_005fmessage_005f125_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f125, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f125_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f126(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f126 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f126_reused = false;
try {
_jspx_th_spring_005fmessage_005f126.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f126.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(408,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f126.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(408,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f126.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f126 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f126 = _jspx_th_spring_005fmessage_005f126.doStartTag();
if (_jspx_th_spring_005fmessage_005f126.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f126[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f126.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f126.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f126);
_jspx_th_spring_005fmessage_005f126_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f126, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f126_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f127(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f127 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f127_reused = false;
try {
_jspx_th_spring_005fmessage_005f127.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f127.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(412,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f127.setCode("mypage.order.lbl.payment.rltmbnk.bank18");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(412,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f127.setText("하나은행");
int[] _jspx_push_body_count_spring_005fmessage_005f127 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f127 = _jspx_th_spring_005fmessage_005f127.doStartTag();
if (_jspx_th_spring_005fmessage_005f127.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f127[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f127.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f127.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f127);
_jspx_th_spring_005fmessage_005f127_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f127, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f127_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f128(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f128 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f128_reused = false;
try {
_jspx_th_spring_005fmessage_005f128.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f128.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(413,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f128.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(413,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f128.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f128 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f128 = _jspx_th_spring_005fmessage_005f128.doStartTag();
if (_jspx_th_spring_005fmessage_005f128.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f128[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f128.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f128.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f128);
_jspx_th_spring_005fmessage_005f128_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f128, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f128_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f129(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f129 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f129_reused = false;
try {
_jspx_th_spring_005fmessage_005f129.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f129.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(417,28) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f129.setCode("mypage.order.lbl.payment.rltmbnk.bank19");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(417,28) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f129.setText("한미은행");
int[] _jspx_push_body_count_spring_005fmessage_005f129 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f129 = _jspx_th_spring_005fmessage_005f129.doStartTag();
if (_jspx_th_spring_005fmessage_005f129.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f129[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f129.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f129.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f129);
_jspx_th_spring_005fmessage_005f129_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f129, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f129_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f130(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f130 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f130_reused = false;
try {
_jspx_th_spring_005fmessage_005f130.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f130.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(418,32) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f130.setCode("mypage.order.lbl.payment.rltmbnk.info4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(418,32) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f130.setText("평일 및 공휴일");
int[] _jspx_push_body_count_spring_005fmessage_005f130 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f130 = _jspx_th_spring_005fmessage_005f130.doStartTag();
if (_jspx_th_spring_005fmessage_005f130.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f130[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f130.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f130.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f130);
_jspx_th_spring_005fmessage_005f130_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f130, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f130_reused);
}
return false;
}
private boolean _jspx_meth_c_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:if
org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f0 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class);
boolean _jspx_th_c_005fif_005f0_reused = false;
try {
_jspx_th_c_005fif_005f0.setPageContext(_jspx_page_context);
_jspx_th_c_005fif_005f0.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(432,5) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fif_005f0.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.type ne 'clmDlvAmtPay' and false}", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue());
int _jspx_eval_c_005fif_005f0 = _jspx_th_c_005fif_005f0.doStartTag();
if (_jspx_eval_c_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("<dl class=\"refund-info-section\">\r\n");
out.write("\t\t\t\t\t\t\t<dt>");
if (_jspx_meth_spring_005fmessage_005f131(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</dt>\r\n");
out.write("\t\t\t\t\t\t\t<dd>\r\n");
out.write("\t\t\t\t\t\t\t\t<p class=\"txt-sub-info01 txt-sub-col-type01\">");
if (_jspx_meth_spring_005fmessage_005f132(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("<br /><span class=\"col-type02\">");
if (_jspx_meth_spring_005fmessage_005f133(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</span></p>\r\n");
out.write("\t\t\t\t\t\t\t\t<ul class=\"radio-list\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t<li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<span class=\"rdo-skin\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" id=\"rdoRefund01\" name=\"rdoRefund\" checked=\"checked\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<span>");
if (_jspx_meth_spring_005fmessage_005f134(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</span>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t</span>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<label for=\"rdoRefund01\">");
if (_jspx_meth_spring_005fmessage_005f135(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</label>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t");
if (_jspx_meth_c_005fif_005f1(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
if (_jspx_meth_c_005fif_005f2(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</ul>\r\n");
out.write("\t\t\t\t\t\t\t\t<ul class=\"text-list01 col-type01\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t<li><strong>");
if (_jspx_meth_spring_005fmessage_005f140(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</strong><br>");
if (_jspx_meth_spring_005fmessage_005f141(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<li><strong>");
if (_jspx_meth_spring_005fmessage_005f142(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</strong><br>");
if (_jspx_meth_spring_005fmessage_005f143(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t<li><strong>");
if (_jspx_meth_spring_005fmessage_005f144(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</strong><br>");
if (_jspx_meth_spring_005fmessage_005f145(_jspx_th_c_005fif_005f0, _jspx_page_context))
return true;
out.write("</li>\r\n");
out.write("\t\t\t\t\t\t\t\t</ul>\r\n");
out.write("\t\t\t\t\t\t\t</dd>\r\n");
out.write("\t\t\t\t\t\t</dl>\r\n");
out.write("\t\t\t\t\t");
int evalDoAfterBody = _jspx_th_c_005fif_005f0.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f0);
_jspx_th_c_005fif_005f0_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fif_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fif_005f0_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f131(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f131 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f131_reused = false;
try {
_jspx_th_spring_005fmessage_005f131.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f131.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(434,11) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f131.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc1");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(434,11) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f131.setText("품절 시 빠른 환불서비스");
int[] _jspx_push_body_count_spring_005fmessage_005f131 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f131 = _jspx_th_spring_005fmessage_005f131.doStartTag();
if (_jspx_th_spring_005fmessage_005f131.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f131[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f131.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f131.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f131);
_jspx_th_spring_005fmessage_005f131_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f131, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f131_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f132(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f132 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f132_reused = false;
try {
_jspx_th_spring_005fmessage_005f132.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f132.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(436,53) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f132.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc2");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(436,53) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f132.setText("구매하신 상품의 일부가 품절된 경우, 고객님께 빠른 환불서비스를 제공하고 있습니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f132 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f132 = _jspx_th_spring_005fmessage_005f132.doStartTag();
if (_jspx_th_spring_005fmessage_005f132.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f132[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f132.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f132.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f132);
_jspx_th_spring_005fmessage_005f132_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f132, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f132_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f133(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f133 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f133_reused = false;
try {
_jspx_th_spring_005fmessage_005f133.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f133.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(436,206) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f133.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc3");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(436,206) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f133.setText("품절 시 고객님이 선택하신 방법으로 환불 처리 해드립니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f133 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f133 = _jspx_th_spring_005fmessage_005f133.doStartTag();
if (_jspx_th_spring_005fmessage_005f133.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f133[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f133.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f133.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f133);
_jspx_th_spring_005fmessage_005f133_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f133, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f133_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f134(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f134 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f134_reused = false;
try {
_jspx_th_spring_005fmessage_005f134.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f134.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(441,17) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f134.setCode("mypage.order.btn.select");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(441,17) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f134.setText("선택");
int[] _jspx_push_body_count_spring_005fmessage_005f134 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f134 = _jspx_th_spring_005fmessage_005f134.doStartTag();
if (_jspx_th_spring_005fmessage_005f134.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f134[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f134.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f134.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f134);
_jspx_th_spring_005fmessage_005f134_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f134, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f134_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f135(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f135 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f135_reused = false;
try {
_jspx_th_spring_005fmessage_005f135.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f135.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(443,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f135.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(443,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f135.setText("고객센터 확인환불");
int[] _jspx_push_body_count_spring_005fmessage_005f135 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f135 = _jspx_th_spring_005fmessage_005f135.doStartTag();
if (_jspx_th_spring_005fmessage_005f135.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f135[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f135.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f135.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f135);
_jspx_th_spring_005fmessage_005f135_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f135, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f135_reused);
}
return false;
}
private boolean _jspx_meth_c_005fif_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:if
org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f1 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class);
boolean _jspx_th_c_005fif_005f1_reused = false;
try {
_jspx_th_c_005fif_005f1.setPageContext(_jspx_page_context);
_jspx_th_c_005fif_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(445,9) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fif_005f1.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.autoAllRefundYn eq 'Y' }", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue());
int _jspx_eval_c_005fif_005f1 = _jspx_th_c_005fif_005f1.doStartTag();
if (_jspx_eval_c_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("<li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<span class=\"rdo-skin\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" id=\"rdoRefund02\" name=\"rdoRefund\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<span>");
if (_jspx_meth_spring_005fmessage_005f136(_jspx_th_c_005fif_005f1, _jspx_page_context))
return true;
out.write("</span>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t</span>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<label for=\"rdoRefund02\">");
if (_jspx_meth_spring_005fmessage_005f137(_jspx_th_c_005fif_005f1, _jspx_page_context))
return true;
out.write("</label>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t");
int evalDoAfterBody = _jspx_th_c_005fif_005f1.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f1);
_jspx_th_c_005fif_005f1_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fif_005f1, _jsp_getInstanceManager(), _jspx_th_c_005fif_005f1_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f136(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f136 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f136_reused = false;
try {
_jspx_th_spring_005fmessage_005f136.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f136.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f1);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(449,17) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f136.setCode("mypage.order.btn.select");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(449,17) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f136.setText("선택");
int[] _jspx_push_body_count_spring_005fmessage_005f136 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f136 = _jspx_th_spring_005fmessage_005f136.doStartTag();
if (_jspx_th_spring_005fmessage_005f136.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f136[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f136.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f136.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f136);
_jspx_th_spring_005fmessage_005f136_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f136, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f136_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f137(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f137 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f137_reused = false;
try {
_jspx_th_spring_005fmessage_005f137.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f137.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f1);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(451,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f137.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc5");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(451,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f137.setText("주문전체 환불(자동환불)");
int[] _jspx_push_body_count_spring_005fmessage_005f137 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f137 = _jspx_th_spring_005fmessage_005f137.doStartTag();
if (_jspx_th_spring_005fmessage_005f137.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f137[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f137.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f137.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f137);
_jspx_th_spring_005fmessage_005f137_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f137, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f137_reused);
}
return false;
}
private boolean _jspx_meth_c_005fif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// c:if
org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f2 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class);
boolean _jspx_th_c_005fif_005f2_reused = false;
try {
_jspx_th_c_005fif_005f2.setPageContext(_jspx_page_context);
_jspx_th_c_005fif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(454,9) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_c_005fif_005f2.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orderInfo.autoPartRefundYn eq 'Y' }", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue());
int _jspx_eval_c_005fif_005f2 = _jspx_th_c_005fif_005f2.doStartTag();
if (_jspx_eval_c_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
out.write("<li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<span class=\"rdo-skin\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" id=\"rdoRefund03\" name=\"rdoRefund\">\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t\t<span>");
if (_jspx_meth_spring_005fmessage_005f138(_jspx_th_c_005fif_005f2, _jspx_page_context))
return true;
out.write("</span>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t</span>\r\n");
out.write("\t\t\t\t\t\t\t\t\t\t<label for=\"rdoRefund03\">");
if (_jspx_meth_spring_005fmessage_005f139(_jspx_th_c_005fif_005f2, _jspx_page_context))
return true;
out.write("</label>\r\n");
out.write("\t\t\t\t\t\t\t\t\t</li>\r\n");
out.write("\t\t\t\t\t\t\t\t\t");
int evalDoAfterBody = _jspx_th_c_005fif_005f2.doAfterBody();
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_c_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
_005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f2);
_jspx_th_c_005fif_005f2_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fif_005f2, _jsp_getInstanceManager(), _jspx_th_c_005fif_005f2_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f138(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f138 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f138_reused = false;
try {
_jspx_th_spring_005fmessage_005f138.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f138.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f2);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(458,17) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f138.setCode("mypage.order.btn.select");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(458,17) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f138.setText("선택");
int[] _jspx_push_body_count_spring_005fmessage_005f138 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f138 = _jspx_th_spring_005fmessage_005f138.doStartTag();
if (_jspx_th_spring_005fmessage_005f138.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f138[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f138.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f138.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f138);
_jspx_th_spring_005fmessage_005f138_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f138, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f138_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f139(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f139 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f139_reused = false;
try {
_jspx_th_spring_005fmessage_005f139.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f139.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f2);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(460,35) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f139.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc9");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(460,35) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f139.setText("주문부분 환불(자동환불)");
int[] _jspx_push_body_count_spring_005fmessage_005f139 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f139 = _jspx_th_spring_005fmessage_005f139.doStartTag();
if (_jspx_th_spring_005fmessage_005f139.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f139[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f139.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f139.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f139);
_jspx_th_spring_005fmessage_005f139_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f139, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f139_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f140(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f140 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f140_reused = false;
try {
_jspx_th_spring_005fmessage_005f140.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f140.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(465,21) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f140.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc4");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(465,21) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f140.setText("고객센터 확인환불");
int[] _jspx_push_body_count_spring_005fmessage_005f140 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f140 = _jspx_th_spring_005fmessage_005f140.doStartTag();
if (_jspx_th_spring_005fmessage_005f140.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f140[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f140.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f140.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f140);
_jspx_th_spring_005fmessage_005f140_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f140, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f140_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f141(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f141 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f141_reused = false;
try {
_jspx_th_spring_005fmessage_005f141.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f141.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(465,119) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f141.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc6");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(465,119) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f141.setText("고객센터에서 고객님에게 연락 드린 후 환불을 처리해 드립니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f141 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f141 = _jspx_th_spring_005fmessage_005f141.doStartTag();
if (_jspx_th_spring_005fmessage_005f141.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f141[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f141.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f141.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f141);
_jspx_th_spring_005fmessage_005f141_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f141, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f141_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f142(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f142 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f142_reused = false;
try {
_jspx_th_spring_005fmessage_005f142.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f142.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(466,21) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f142.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc5");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(466,21) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f142.setText("주문전체 환불(자동환불)");
int[] _jspx_push_body_count_spring_005fmessage_005f142 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f142 = _jspx_th_spring_005fmessage_005f142.doStartTag();
if (_jspx_th_spring_005fmessage_005f142.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f142[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f142.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f142.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f142);
_jspx_th_spring_005fmessage_005f142_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f142, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f142_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f143(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f143 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f143_reused = false;
try {
_jspx_th_spring_005fmessage_005f143.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f143.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(466,123) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f143.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc7");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(466,123) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f143.setText("환불을 선택하시면 별도의 연락 없이 선택하신 결제 방법으로 환불해 드립니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f143 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f143 = _jspx_th_spring_005fmessage_005f143.doStartTag();
if (_jspx_th_spring_005fmessage_005f143.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f143[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f143.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f143.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f143);
_jspx_th_spring_005fmessage_005f143_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f143, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f143_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f144(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f144 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f144_reused = false;
try {
_jspx_th_spring_005fmessage_005f144.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f144.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(467,21) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f144.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc9");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(467,21) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f144.setText("주문부분 환불(자동환불)");
int[] _jspx_push_body_count_spring_005fmessage_005f144 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f144 = _jspx_th_spring_005fmessage_005f144.doStartTag();
if (_jspx_th_spring_005fmessage_005f144.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f144[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f144.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f144.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f144);
_jspx_th_spring_005fmessage_005f144_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f144, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f144_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f145(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f145 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f145_reused = false;
try {
_jspx_th_spring_005fmessage_005f145.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f145.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(467,123) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f145.setCode("mypage.order.lbl.payment.rltmbnk.refundsvc8");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(467,123) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f145.setText("환불을 선택하시면 품절상품에 대해서만 선택하신 결제 방법으로 환불해드립니다.");
int[] _jspx_push_body_count_spring_005fmessage_005f145 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f145 = _jspx_th_spring_005fmessage_005f145.doStartTag();
if (_jspx_th_spring_005fmessage_005f145.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f145[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f145.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f145.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f145);
_jspx_th_spring_005fmessage_005f145_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f145, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f145_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f146(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f146 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f146_reused = false;
try {
_jspx_th_spring_005fmessage_005f146.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f146.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(476,97) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f146.setCode("mypage.order.lbl.payment.dopay");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(476,97) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f146.setText("결제하기");
int[] _jspx_push_body_count_spring_005fmessage_005f146 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f146 = _jspx_th_spring_005fmessage_005f146.doStartTag();
if (_jspx_th_spring_005fmessage_005f146.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f146[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f146.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f146.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f146);
_jspx_th_spring_005fmessage_005f146_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f146, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f146_reused);
}
return false;
}
private boolean _jspx_meth_spring_005fmessage_005f147(javax.servlet.jsp.PageContext _jspx_page_context)
throws java.lang.Throwable {
javax.servlet.jsp.PageContext pageContext = _jspx_page_context;
javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut();
// spring:message
org.springframework.web.servlet.tags.MessageTag _jspx_th_spring_005fmessage_005f147 = (org.springframework.web.servlet.tags.MessageTag) _005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.get(org.springframework.web.servlet.tags.MessageTag.class);
boolean _jspx_th_spring_005fmessage_005f147_reused = false;
try {
_jspx_th_spring_005fmessage_005f147.setPageContext(_jspx_page_context);
_jspx_th_spring_005fmessage_005f147.setParent(null);
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(483,47) name = code type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f147.setCode("mypage.order.btn.close");
// /WEB-INF/views/mypage/order/include/order.payment.edit.include.jsp(483,47) name = text type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null
_jspx_th_spring_005fmessage_005f147.setText("닫기");
int[] _jspx_push_body_count_spring_005fmessage_005f147 = new int[] { 0 };
try {
int _jspx_eval_spring_005fmessage_005f147 = _jspx_th_spring_005fmessage_005f147.doStartTag();
if (_jspx_th_spring_005fmessage_005f147.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return true;
}
} catch (java.lang.Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_005fmessage_005f147[0]-- > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_005fmessage_005f147.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_005fmessage_005f147.doFinally();
}
_005fjspx_005ftagPool_005fspring_005fmessage_0026_005ftext_005fcode_005fnobody.reuse(_jspx_th_spring_005fmessage_005f147);
_jspx_th_spring_005fmessage_005f147_reused = true;
} finally {
org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_spring_005fmessage_005f147, _jsp_getInstanceManager(), _jspx_th_spring_005fmessage_005f147_reused);
}
return false;
}
}
|
[
"[email protected]"
] | |
8724ff6428666ea8298c0a9afad75110ef80de15
|
3db9a6325f533b70daed83d19b80bef3c7b8a907
|
/src/main/java/com/qm/backend/pojo/InterfaceUpdateExample.java
|
627e26d8955c84cf2b0c1512ee99ac65906404e5
|
[] |
no_license
|
QM-Developers/backend
|
5d3e9b5119d7abbaffc929c6756b2a0b972258c4
|
04bbfe8a0bbf2c113668893399661441975db3d7
|
refs/heads/master
| 2021-07-21T13:58:51.256291 | 2017-10-25T09:59:32 | 2017-10-25T09:59:32 | 103,729,166 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 17,237 |
java
|
package com.qm.backend.pojo;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class InterfaceUpdateExample {
private Integer pageNum;
private Integer pageSize;
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
public InterfaceUpdateExample() {
oredCriteria = new ArrayList<Criteria>();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andUpdateIdIsNull() {
addCriterion("update_id is null");
return (Criteria) this;
}
public Criteria andUpdateIdIsNotNull() {
addCriterion("update_id is not null");
return (Criteria) this;
}
public Criteria andUpdateIdEqualTo(String value) {
addCriterion("update_id =", value, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdNotEqualTo(String value) {
addCriterion("update_id <>", value, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdGreaterThan(String value) {
addCriterion("update_id >", value, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdGreaterThanOrEqualTo(String value) {
addCriterion("update_id >=", value, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdLessThan(String value) {
addCriterion("update_id <", value, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdLessThanOrEqualTo(String value) {
addCriterion("update_id <=", value, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdLike(String value) {
addCriterion("update_id like", value, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdNotLike(String value) {
addCriterion("update_id not like", value, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdIn(List<String> values) {
addCriterion("update_id in", values, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdNotIn(List<String> values) {
addCriterion("update_id not in", values, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdBetween(String value1, String value2) {
addCriterion("update_id between", value1, value2, "updateId");
return (Criteria) this;
}
public Criteria andUpdateIdNotBetween(String value1, String value2) {
addCriterion("update_id not between", value1, value2, "updateId");
return (Criteria) this;
}
public Criteria andUpdateDateIsNull() {
addCriterion("update_date is null");
return (Criteria) this;
}
public Criteria andUpdateDateIsNotNull() {
addCriterion("update_date is not null");
return (Criteria) this;
}
public Criteria andUpdateDateEqualTo(Date value) {
addCriterion("update_date =", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotEqualTo(Date value) {
addCriterion("update_date <>", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThan(Date value) {
addCriterion("update_date >", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThanOrEqualTo(Date value) {
addCriterion("update_date >=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThan(Date value) {
addCriterion("update_date <", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThanOrEqualTo(Date value) {
addCriterion("update_date <=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateIn(List<Date> values) {
addCriterion("update_date in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotIn(List<Date> values) {
addCriterion("update_date not in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateBetween(Date value1, Date value2) {
addCriterion("update_date between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotBetween(Date value1, Date value2) {
addCriterion("update_date not between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateTextIsNull() {
addCriterion("update_text is null");
return (Criteria) this;
}
public Criteria andUpdateTextIsNotNull() {
addCriterion("update_text is not null");
return (Criteria) this;
}
public Criteria andUpdateTextEqualTo(String value) {
addCriterion("update_text =", value, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextNotEqualTo(String value) {
addCriterion("update_text <>", value, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextGreaterThan(String value) {
addCriterion("update_text >", value, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextGreaterThanOrEqualTo(String value) {
addCriterion("update_text >=", value, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextLessThan(String value) {
addCriterion("update_text <", value, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextLessThanOrEqualTo(String value) {
addCriterion("update_text <=", value, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextLike(String value) {
addCriterion("update_text like", value, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextNotLike(String value) {
addCriterion("update_text not like", value, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextIn(List<String> values) {
addCriterion("update_text in", values, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextNotIn(List<String> values) {
addCriterion("update_text not in", values, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextBetween(String value1, String value2) {
addCriterion("update_text between", value1, value2, "updateText");
return (Criteria) this;
}
public Criteria andUpdateTextNotBetween(String value1, String value2) {
addCriterion("update_text not between", value1, value2, "updateText");
return (Criteria) this;
}
public Criteria andInfoIdIsNull() {
addCriterion("info_id is null");
return (Criteria) this;
}
public Criteria andInfoIdIsNotNull() {
addCriterion("info_id is not null");
return (Criteria) this;
}
public Criteria andInfoIdEqualTo(String value) {
addCriterion("info_id =", value, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdNotEqualTo(String value) {
addCriterion("info_id <>", value, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdGreaterThan(String value) {
addCriterion("info_id >", value, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdGreaterThanOrEqualTo(String value) {
addCriterion("info_id >=", value, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdLessThan(String value) {
addCriterion("info_id <", value, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdLessThanOrEqualTo(String value) {
addCriterion("info_id <=", value, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdLike(String value) {
addCriterion("info_id like", value, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdNotLike(String value) {
addCriterion("info_id not like", value, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdIn(List<String> values) {
addCriterion("info_id in", values, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdNotIn(List<String> values) {
addCriterion("info_id not in", values, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdBetween(String value1, String value2) {
addCriterion("info_id between", value1, value2, "infoId");
return (Criteria) this;
}
public Criteria andInfoIdNotBetween(String value1, String value2) {
addCriterion("info_id not between", value1, value2, "infoId");
return (Criteria) this;
}
public Criteria andInfoNameIsNull() {
addCriterion("info_name is null");
return (Criteria) this;
}
public Criteria andInfoNameIsNotNull() {
addCriterion("info_name is not null");
return (Criteria) this;
}
public Criteria andInfoNameEqualTo(String value) {
addCriterion("info_name =", value, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameNotEqualTo(String value) {
addCriterion("info_name <>", value, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameGreaterThan(String value) {
addCriterion("info_name >", value, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameGreaterThanOrEqualTo(String value) {
addCriterion("info_name >=", value, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameLessThan(String value) {
addCriterion("info_name <", value, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameLessThanOrEqualTo(String value) {
addCriterion("info_name <=", value, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameLike(String value) {
addCriterion("info_name like", value, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameNotLike(String value) {
addCriterion("info_name not like", value, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameIn(List<String> values) {
addCriterion("info_name in", values, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameNotIn(List<String> values) {
addCriterion("info_name not in", values, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameBetween(String value1, String value2) {
addCriterion("info_name between", value1, value2, "infoName");
return (Criteria) this;
}
public Criteria andInfoNameNotBetween(String value1, String value2) {
addCriterion("info_name not between", value1, value2, "infoName");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
public Integer getPageNum()
{
return pageNum;
}
public void setPageNum(Integer pageNum)
{
this.pageNum = pageNum;
}
public Integer getPageSize()
{
return pageSize;
}
public void setPageSize(Integer pageSize)
{
this.pageSize = pageSize;
}
}
|
[
"[email protected]"
] | |
90e90d472bc0fce3d96c63ecc2eabed7c8e703fe
|
afd4c962f7b874bde0dc6ce311b18701cc1bf69d
|
/btrace_test/src/main/java/com/oneapm/HistoOnEvent.java
|
8b3c5c14911284c36e3a4dab79222516cbb50af2
|
[] |
no_license
|
lilizhaolilizhao/z_alert_test
|
b0514812b6ad8ed264993e7792a0c8632e9ed30d
|
64098d72da1d38061ac64bfb85e1de58336325aa
|
refs/heads/master
| 2022-07-18T20:28:30.860898 | 2019-08-02T09:30:17 | 2019-08-02T09:30:17 | 153,259,428 | 0 | 0 | null | 2022-07-01T21:27:08 | 2018-10-16T09:31:10 |
Java
|
UTF-8
|
Java
| false | false | 1,009 |
java
|
//package com.oneapm;
//
//import com.sun.btrace.annotations.BTrace;
//import com.sun.btrace.annotations.OnEvent;
//import com.sun.btrace.annotations.OnMethod;
//import com.sun.btrace.annotations.Self;
//
//import java.util.HashMap;
//import java.util.Map;
//import java.util.concurrent.atomic.AtomicInteger;
//
//@BTrace
//public class HistoOnEvent {
// private static Map<String, AtomicInteger> histo = new HashMap();
//
// @OnMethod(
// clazz="javax.swing.JComponent",
// method="<init>"
// )
// public static void onnewObject(@Self Object obj) {
// String cn = name(classOf(obj));
// AtomicInteger ai = get(histo, cn);
// if (ai == null) {
// ai = new AtomicInteger(1);
// put(histo, cn, ai);
// } else {
// incrementAndGet(ai);
// }
// }
//
// @OnEvent
// public static void print() {
// if (size(histo) != 0) {
// printNumberMap("Component Histogram", histo);
// }
// }
//}
|
[
"[email protected]"
] | |
7016aff7f7d4d4d3e03b69e3e041a0ff47b6b469
|
0854f7535fb8ce2457f84aa5ac75762153729612
|
/src/main/java/SetMatrixZeros.java
|
244710842dcb71d3a42bad98c4f69020e19e0711
|
[] |
no_license
|
ArlenLi/HackerRank
|
cbe8e292ba9f929f7f6da0907034fd207f275da0
|
b86796b614a418295cd838312062f642c5c647ab
|
refs/heads/master
| 2023-03-02T17:57:32.201058 | 2021-02-13T05:41:01 | 2021-02-13T05:41:01 | 298,118,271 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,555 |
java
|
import java.util.Arrays;
public class SetMatrixZeros {
public void setZeroes(int[][] matrix) {
boolean setFirstColumnToZeros = false;
boolean setFirstRowToZeros = false;
for (int[] ints : matrix) {
if (ints[0] == 0) {
setFirstColumnToZeros = true;
}
}
for(int j = 0; j < matrix[0].length; j++){
if(matrix[0][j] == 0){
setFirstRowToZeros = true;
}
}
for(int i = 1; i < matrix.length; i++)
for(int j = 1; j < matrix[0].length; j++){
if(matrix[i][j] == 0){
if(matrix[i][0] != 0){
matrix[i][0] = 0;
}
if(matrix[0][j] != 0){
matrix[0][j] = 0;
}
}
}
for(int i = 1; i < matrix.length; i++){
if(matrix[i][0] == 0){
for(int j = 0; j < matrix[0].length; j++){
matrix[i][j] = 0;
}
}
}
for(int j = 1; j < matrix[0].length; j++){
if(matrix[0][j] == 0){
for(int i = 0; i < matrix.length; i++){
matrix[i][j] = 0;
}
}
}
if(setFirstColumnToZeros){
for(int i = 0; i < matrix.length; i++){
matrix[i][0] = 0;
}
}
if(setFirstRowToZeros){
Arrays.fill(matrix[0], 0);
}
}
}
|
[
"[email protected]"
] | |
f39fbb8e4447c0aee84377b2ffa62334c0807bc1
|
5d2d7a535572ae6b19aac32d8b971a04cc7e286a
|
/src/bintree/tNode.java
|
f3c7135185be9ea069d6535f60ceed621d2589b8
|
[] |
no_license
|
ExequielAndres/Lab3ABB
|
bd365756cc398d27e1b9d71841385fe44de9c71e
|
7b09ca839d88545ab6791bbaf3c16f78c570cb46
|
refs/heads/master
| 2020-06-25T16:35:00.963633 | 2019-07-29T03:15:22 | 2019-07-29T03:15:22 | 199,367,091 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 678 |
java
|
package bintree;
/**
*
* @author Exequiel
*/
public class tNode {
public int n, repeat;//Dato tipo entero
public BinTree ls, rs;//punteros del arbol
//Constructor
public tNode(int info) {
this.n = info;//Se inicializa info con la informacion del
this.ls = null;//parametro del constructor
this.rs = null;
}
//Constructor sin parametros
public tNode() {
this.n = 0;//se inicializa la informacion del arbol con 0
this.ls = null;//puntero izquierdo apunta null
this.rs = null;//puntero derecho apunta null
}
}
|
[
"Exequiel@DESKTOP-K270PLE"
] |
Exequiel@DESKTOP-K270PLE
|
7d2e7ab1326322e50a0770e49a30c703855cada9
|
2506125dcf1dc36e984fe99f1e4d905ab1aa223c
|
/studentAssgnmnt - map in map - Dummy/StudentAssignmentSystem/src/com/psl/util/StudentAssignmentImpl.java
|
8c433e5b0c861b068ae578632c26039a60e79314
|
[] |
no_license
|
Arpit14795/arpit
|
0c85c4badce9226e49dd08987912f9bc69179de3
|
43a8470c91b1c4448f985a6c619ba4c602c217c7
|
refs/heads/master
| 2021-01-12T04:20:39.326199 | 2017-02-02T11:21:56 | 2017-02-02T11:21:56 | 77,591,901 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 9,737 |
java
|
package com.psl.util;
import java.io.File;
import java.text.SimpleDateFormat;
import java.io.FileNotFoundException;
import java.text.DateFormat;
import java.text.ParseException;
//import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Comparator;
import java.util.Date;
//import java.util.Calendar;
//import java.util.Collections;
//import java.util.Comparator;
//import java.util.Date;
import java.util.HashMap;
import java.util.List;
//import java.util.HashSet;
//import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
//import java.util.Map.Entry;
import java.util.Scanner;
//import java.util.Set;
import com.psl.bean.Assignment;
import com.psl.bean.Student;
import com.psl.bean.Subject;
public class StudentAssignmentImpl implements StudentAssignment {
@Override
public Map<Subject, Map<Student, Assignment>> populateData(String fileSubject, String fileStudent,
String fileAssgnment) {
// TODO Auto-generated method stub
Map<Subject, Map<Student,Assignment>> map=new HashMap<Subject, Map<Student, Assignment>>();
Scanner sc1=null;
try {
sc1 = new Scanner(new File(fileSubject));
while(sc1.hasNext())
{
String temp[]=sc1.nextLine().split(",");
Date d=null;
SimpleDateFormat sdf=new SimpleDateFormat("dd:MM:yyyy");
try {
d=sdf.parse(temp[1].trim());
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Subject sub=new Subject(temp[0].trim(), d);
map.put(sub, new HashMap<Student,Assignment>());
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Map<Student, Assignment> subMap=new HashMap<Student, Assignment>();
List<Assignment> listAss=new ArrayList<Assignment>();
try {
Scanner sc2=new Scanner(new File(fileStudent));
while(sc2.hasNext())
{
String temp[]=sc2.nextLine().split(",");
Student stu=new Student(Integer.parseInt(temp[0].trim()), temp[1].trim(), temp[2].trim());
subMap.put(stu, null);
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
Scanner sc3=new Scanner(new File(fileAssgnment));
while(sc3.hasNext())
{
String temp[]=sc3.nextLine().split(",");
Date d=null;
SimpleDateFormat sdf=new SimpleDateFormat("dd:MM:yyyy");
try {
d=sdf.parse(temp[2].trim());
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Assignment ass=new Assignment(Integer.parseInt(temp[0].trim()), temp[1].trim(), d, 0, 0);
listAss.add(ass);
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
for(Entry<Student, Assignment> entry:subMap.entrySet())
{
for(Assignment a:listAss)
{
if(entry.getKey().getRollNumber()==a.getRollNumber() && entry.getKey().getSubject().equals(a.getSubject()))
{
entry.setValue(a);
// System.out.println(entry);
}
}
}
for(Entry<Subject, Map<Student, Assignment>> e1:map.entrySet())
{
for(Entry<Student, Assignment> e2:subMap.entrySet())
{
if(e1.getKey().getSubjectName().equals(e2.getKey().getSubject()))
{
e1.getValue().put(e2.getKey(), e2.getValue());
}
}
}
// for(Entry<Subject, Map<Student,Assignment>> e:map.entrySet())
// {
// System.out.println(e);
// }
return map;
/*
Scanner sc=null;
//HashSet<Subject> subset=new HashSet<Subject>();
ArrayList<Assignment> array = new ArrayList<Assignment>();
HashMap<Student,Assignment> newmap=new HashMap<Student,Assignment>();
Map<Subject, Map<Student, Assignment>> newmap2=new HashMap<Subject, Map<Student, Assignment>>();
DateFormat df=new SimpleDateFormat("dd:MM:yyyy");
try {sc=new Scanner(new File(fileSubject));
while(sc.hasNext()){
String[] temp=sc.nextLine().split(",");
String subjectName=temp[0].trim();
java.util.Date assignmentIssueDate=df.parse(temp[1].trim());
newmap2.put(new Subject(subjectName,assignmentIssueDate),new HashMap<Student,Assignment>());
}
} catch (FileNotFoundException e){}
catch(ParseException e){}
finally{sc.close();}
try {sc=new Scanner(new File(fileAssgnment));
while(sc.hasNext()){
int rollNumber;
String subject;
java.util.Date submissionDate;
String[] temp=sc.nextLine().split(",");
rollNumber=Integer.parseInt(temp[0].trim());
subject=temp[1].trim();
submissionDate=df.parse(temp[2].trim());
array.add(new Assignment(rollNumber,subject,submissionDate,0,0));
}
} catch (FileNotFoundException e){}
catch(ParseException e){}
finally{sc.close();}
try {sc=new Scanner(new File(fileStudent));
while(sc.hasNext()){
String[] temp=sc.nextLine().split(",");
int rn;
String sname;
String subject;
rn=Integer.parseInt(temp[0].trim());
sname=temp[1].trim();
subject=temp[2].trim();
for(Assignment a:array){
if(subject.equals(a.getSubject()) && rn==a.getRollNumber()){
newmap.put(new Student(rn,sname,subject),a);
}
}
}
} catch (FileNotFoundException e){}
finally{sc.close();}
for(Map.Entry<Subject,Map<Student,Assignment>> m1:newmap2.entrySet() ){
for(Map.Entry<Student,Assignment> m2:newmap.entrySet() ){
if(m1.getKey().getSubjectName().equals(m2.getKey().getSubject())){
m1.getValue().put(m2.getKey(),m2.getValue());
m1.getKey().setNumberOfSubmissions(m1.getKey().getNumberOfSubmissions()+1);
}
}
}
return newmap2;
*/
}
@Override
public void calculateMarks(Map<Subject, Map<Student, Assignment>> map) {
Calendar issue=Calendar.getInstance();
Calendar sub=Calendar.getInstance();
for(Entry<Subject, Map<Student, Assignment>> e1:map.entrySet())
{
for(Entry<Student, Assignment> e2:e1.getValue().entrySet())
{
issue.setTime(e1.getKey().getAssignmentIssueDate());
sub.setTime(e2.getValue().getSubmissionDate());
int days=sub.get(Calendar.DATE)-issue.get(Calendar.DATE);
if(days<=5)
e2.getValue().setMarksObtained(45);
else if(days>5 && days<=10)
e2.getValue().setMarksObtained(35);
else
e2.getValue().setMarksObtained(0);
}
}
//
// for(Entry<Subject, Map<Student,Assignment>> e:map.entrySet())
// {
// System.out.println(e);
// }
/*
for(Map.Entry<Subject,Map<Student,Assignment>> m1:map.entrySet()){
for(Map.Entry<Student,Assignment> m2 : m1.getValue().entrySet()){
if(m1.getKey().getSubjectName().equals(m2.getKey().getSubject())){
long day=((m2.getValue().getSubmissionDate().getTime())-(m1.getKey().getAssignmentIssueDate().getTime()))/(1000*24*3600);
if(day<=5)
m2.getValue().setMarksObtained(45);
if(day>5 && day<=10 )
m2.getValue().setMarksObtained(35);
if(day>10)
m2.getValue().setMarksObtained(0);
}
}
}
*/
}
@Override
public Map<Subject, Map<Student, Assignment>> generateDefaulterListSubjectWise(
Map<Subject, Map<Student, Assignment>> map) {
calculateMarks(map);
// for(Entry<Subject, Map<Student, Assignment>> e:map.entrySet())
// {
// System.out.println(e);
// }
Map<Subject,Map<Student,Assignment>> newMap=new HashMap<Subject, Map<Student,Assignment>>();
Map<Student,Assignment> newMap1=new HashMap<Student, Assignment>();
for(Entry<Subject, Map<Student,Assignment>> e1:map.entrySet())
{
for(Entry<Student,Assignment> e2:e1.getValue().entrySet())
{
// System.out.println(e2.getValue().getMarksObtained());
if(e2.getValue().getMarksObtained()==0)
{
e2.getKey().setDefaulter(true);
newMap1.put(e2.getKey(), e2.getValue());
newMap.put(e1.getKey(), newMap1);
// System.out.println(newMap);
}
}
}
for(Entry<Subject, Map<Student, Assignment>> e:newMap.entrySet())
{
System.out.println(e);
}
return null;
/*
//Map<Subject, Map<Student, Assignment>> map2=new HashMap<Subject, Map<Student, Assignment>>();
for(Map.Entry<Subject,Map<Student,Assignment>> m1:map.entrySet()){
for(Map.Entry<Student,Assignment> m2 : m1.getValue().entrySet()){
if(m1.getKey().getSubjectName().equals(m2.getKey().getSubject())){
long day=((m2.getValue().getSubmissionDate().getTime())-(m1.getKey().getAssignmentIssueDate().getTime()))/(1000*24*3600);
if(day>10)
m2.getKey().setDefaulter(true);
}
}
}
return map;
*/
}
@Override
public void offerGraseMarks(Map<Subject, Map<Student, Assignment>> map) {
/*
for(Map.Entry<Subject,Map<Student,Assignment>> m1:map.entrySet()){
ArrayList<Assignment> list=new ArrayList<Assignment>();
for(Map.Entry<Student,Assignment> m2 : m1.getValue().entrySet()){
list.add(m2.getValue());
Collections.sort(list,new Comparator<Assignment>(){
public int compare(Assignment a1,Assignment a2){
return a1.getSubmissionDate().compareTo(a2.getSubmissionDate());
}});}
for(Map.Entry<Student,Assignment> m2 : m1.getValue().entrySet()){
Date d=list.get(0).getSubmissionDate();
if(m2.getValue().getSubmissionDate().equals(d)){
m2.getValue().setMarksObtained(m2.getValue().getMarksObtained()+3);
}
}
}
*/
}
}
|
[
"[email protected]"
] | |
3e6e49062cb120b9e6301fc5235addfb46b02510
|
d83c1bc51e77644ce068005f92250ddbb257386b
|
/mobilesafe/src/main/java/com/guoshisp/mobilesafe/Setup4Activity.java
|
ddbb22036c6f6c19a9c502017939632121c8d6e7
|
[
"Apache-2.0"
] |
permissive
|
2108367112/Demo
|
c0c4e261f8a4e756f30c44747e562a4b06039898
|
84d6cde04dd2108a92d416675058da538a9dda56
|
refs/heads/master
| 2020-04-29T17:29:59.892118 | 2019-03-19T10:35:58 | 2019-03-19T10:35:58 | 176,298,652 | 0 | 0 | null | null | null | null |
GB18030
|
Java
| false | false | 4,762 |
java
|
package com.guoshisp.mobilesafe;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.app.admin.DevicePolicyManager;
import android.content.ComponentName;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import com.guoshisp.mobilesafe.receiver.MyAdmin;
public class Setup4Activity extends Activity {
private CheckBox cb_setup4_protect;
private SharedPreferences sp;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.setup4);
sp = getSharedPreferences("config", MODE_PRIVATE);
cb_setup4_protect = (CheckBox)findViewById(R.id.cb_setup4_protect);
//用于数据的回显。判断手机防盗是否开启,默认情况下没有开启
boolean protecting = sp.getBoolean("protecting", false);
cb_setup4_protect.setChecked(protecting);
cb_setup4_protect.setOnCheckedChangeListener(new OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Editor editor = sp.edit();
if(isChecked){
editor.putBoolean("protecting", true);
cb_setup4_protect.setText("防盗保护已经开启");
}else{
cb_setup4_protect.setText("防盗保护没有开启");
editor.putBoolean("protecting", false);
}
editor.commit();
}
});
}
/**
* 当点击设置向导中的第四个界面中的“点击激活deviceadmin...”时所执行的方法。
* 激活手机的设备管理员权限。激活后,可以执行远程锁屏、清除数据恢复至出场设置
* @param view
*/
public void activeDeviceAdmin(View view){
//创建出一个与MyAdmin相关联的组件
ComponentName mAdminName = new ComponentName(this, MyAdmin.class);
///获取手机设备管理器
DevicePolicyManager dm = (DevicePolicyManager) getSystemService(DEVICE_POLICY_SERVICE);
//判断组件是否已经获取超级管理员的权限
if (!dm.isAdminActive(mAdminName)) {
Intent intent = new Intent(
DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN);
//将组件的超级管理员权限激活
intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_ADMIN, mAdminName);
startActivity(intent);
}
}
/**
* 点击设置向导的第四个界面中的“设置完成”时所执行的方法,当执行该方法时,说明设置向导已经完成
* @param view
*/
public void next(View view){
if(!cb_setup4_protect.isChecked()){//如果防盗保护没有开启,弹出一个对话框提示开启保护
AlertDialog.Builder builder = new Builder(this);
builder.setTitle("温馨提示");
builder.setMessage("手机防盗极大的保护了你的手机安全,强烈建议开启!");
builder.setPositiveButton("开启", new OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
//将防盗保护开启
cb_setup4_protect.setChecked(true);
//设置向导已经完成,在用户下次进入时判断时,值为true,说明已经进行过设置向导
Editor editor = sp.edit();
editor.putBoolean("issetup", true);
editor.commit();
}
});
builder.setNegativeButton("取消", new OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
finish();
//设置向导已经完成,在用户下次进入时判断时,值为true,说明已经进行过设置向导
Editor editor = sp.edit();
editor.putBoolean("issetup", true);
editor.commit();
}
});
builder.create().show();
return ;
}
//设置向导已经完成,在用户下次进入时判断时,值为true,说明已经进行过设置向导
Editor editor = sp.edit();
editor.putBoolean("issetup", true);
editor.commit();
Intent intent = new Intent(this,LostProtectedActivity.class);
startActivity(intent);
finish();
//自定义一个平移的动画效果。参数一:界面进入时的动画效果 , 参数二:界面出去时的动画效果
overridePendingTransition(R.anim.tran_in, R.anim.tran_out);
}
public void pre(View view){
Intent intent = new Intent(this,Setup3Activity.class);
startActivity(intent);
finish();
//自定义一个透明度变化的动画效果。参数一:界面进入时的动画效果 , 参数二:界面出去时的动画效果
overridePendingTransition(R.anim.alpha_in, R.anim.alpha_out);
}
}
|
[
"[email protected]"
] | |
612e3ca345fafbeb4712f7b85bc418d9c9bd69f4
|
c90391ff047de0cdbd7821bbbc8f9d795ff94b08
|
/tpcompiladores/src/java/tp/procesadores/compilador/CompilerAndGenerator.java
|
dbafe3b703b1237ba16548edaa10e9b7f7165d0e
|
[] |
no_license
|
chalo2812/chalo-2812
|
88c7c1224dacc1841d9fe8945d181ecf05bb00a7
|
67e034e5a5cdd3824b7c6e4b9dbf47ca302e8866
|
refs/heads/master
| 2022-06-28T17:23:13.094578 | 2014-12-15T05:13:08 | 2014-12-15T05:13:08 | 33,846,463 | 1 | 0 | null | 2022-06-07T23:11:25 | 2015-04-13T03:46:54 |
Java
|
UTF-8
|
Java
| false | false | 980 |
java
|
package tp.procesadores.compilador;
import tp.procesadores.analizador.sintactico.SintacticAnalyzer;
public class CompilerAndGenerator extends Compiler {
public static void main(String[] args) {
if (args.length < 1) {
System.out
.println("Este compilador del lenguaje LEB precisa de 1 parametro: "
+ "\n\t1.- origen: archivo con el codigo fuente creado en LEB "
+ "\n\nEJ: java -jar compilador.jar .\\fuente.leb "
+ "\n\nLa salida quedara guardada en un archivo programaObjeto.asm en el mismo directorio donde se encuentra el jar.");
} else {
SintacticAnalyzer sa = new SintacticAnalyzer(args[0]);
try {
sa.compilar();
} catch (Exception e) {
System.out
.println("Hay error\\es presente\\s en el archivo.. :'( ");
return;
}
System.out.println("El archivo analizado se encuentra correcto sintacticamente, yay! :)\n" +
"*******************************************************************\n");
}
}
}
|
[
"[email protected]@e290e524-dcc9-e6dd-992a-3a6b9c64af2b"
] |
[email protected]@e290e524-dcc9-e6dd-992a-3a6b9c64af2b
|
84e9833127c300872947452e1dd836e4efb476ac
|
732a6fa36e14baf7f828ef19a62b515312f9a109
|
/channels/branches/port6/trunk/src/main/java/com/mindalliance/channels/pages/components/segment/checklist/ChecklistEditorPanel.java
|
e6b06cfd4d1730f29cb5c76ad01c49346b960016
|
[] |
no_license
|
gauravbvt/test
|
4e991ad3e7dd5ea670ab88f3a74fe8a42418ec20
|
04e48c87ff5c2209fc4bc703795be3f954909c3a
|
refs/heads/master
| 2020-11-24T02:43:32.565109 | 2014-10-07T23:47:39 | 2014-10-07T23:47:39 | 100,468,202 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 6,815 |
java
|
package com.mindalliance.channels.pages.components.segment.checklist;
import com.mindalliance.channels.core.command.Change;
import com.mindalliance.channels.core.command.Command;
import com.mindalliance.channels.core.command.commands.UpdateObject;
import com.mindalliance.channels.core.command.commands.UpdateSegmentObject;
import com.mindalliance.channels.core.model.Identifiable;
import com.mindalliance.channels.core.model.Part;
import com.mindalliance.channels.core.model.checklist.ActionStep;
import com.mindalliance.channels.core.model.checklist.Checklist;
import com.mindalliance.channels.core.model.checklist.Step;
import com.mindalliance.channels.core.util.ChannelsUtils;
import com.mindalliance.channels.pages.Updatable;
import com.mindalliance.channels.pages.components.AbstractCommandablePanel;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior;
import org.apache.wicket.ajax.markup.html.form.AjaxCheckBox;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.markup.html.list.ListItem;
import org.apache.wicket.markup.html.list.ListView;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.PropertyModel;
import java.util.List;
/**
* Checklist editor.
* Copyright (C) 2008-2013 Mind-Alliance Systems. All Rights Reserved.
* Proprietary and Confidential.
* User: jf
* Date: 3/26/13
* Time: 12:34 PM
*/
public class ChecklistEditorPanel extends AbstractCommandablePanel {
private String editedStepRef;
private TextField<String> actionStepText;
private WebMarkupContainer stepsContainer;
private AjaxCheckBox confirmedCheckBox;
public ChecklistEditorPanel( String id, IModel<? extends Identifiable> iModel ) {
super( id, iModel );
init();
}
private void init() {
addStepPanels();
addNewStep();
addConfirmation();
}
private void addStepPanels() {
stepsContainer = new WebMarkupContainer( "stepsContainer" );
stepsContainer.setOutputMarkupId( true );
addOrReplace( stepsContainer );
ListView<Step> stepListView = new ListView<Step>(
"steps",
getSteps()
) {
@Override
protected void populateItem( ListItem<Step> item ) {
Step step = item.getModelObject();
item.add( new ChecklistStepPanel( "step", getPart(), step, isEdited( step ), item.getIndex() ) );
}
};
stepsContainer.add( stepListView );
}
private boolean isEdited( Step step ) {
return editedStepRef != null && step.getRef().equals( editedStepRef );
}
private void addNewStep() {
WebMarkupContainer newStepContainer = new WebMarkupContainer( "newStepContainer" );
newStepContainer.setVisible( isLockedByUser( getPart() ) );
add( newStepContainer );
actionStepText = new TextField<String>(
"newStep",
new PropertyModel<String>( this, "newActionStep" ) );
actionStepText.add( new AjaxFormComponentUpdatingBehavior( "onchange" ) {
@Override
protected void onUpdate( AjaxRequestTarget target ) {
addStepPanels();
target.add( stepsContainer );
target.add( actionStepText );
update( target, new Change( Change.Type.Updated, getPart(), "checklist") );
}
} );
addTipTitle( actionStepText, "Enter a new action step and press return" );
newStepContainer.add( actionStepText );
}
private List<Step> getSteps() {
List<Step> steps = getChecklist().listEffectiveSteps();
getChecklist().sort( steps );
return steps;
}
private Checklist getChecklist() {
return getPart().getEffectiveChecklist();
}
private Part getPart() {
return (Part) getModel().getObject();
}
public String getNewActionStep() {
return "";
}
public void setNewActionStep( String val ) {
String action = ChannelsUtils.cleanUpPhrase( val );
if ( !action.isEmpty() ) {
ActionStep actionStep = new ActionStep( action );
Command command = new UpdateSegmentObject( getUsername(),
getPart(),
"checklist.actionSteps",
actionStep,
UpdateObject.Action.Add );
command.makeUndoable( false );
doCommand( command );
editedStepRef = actionStep.getRef();
}
}
private void addConfirmation() {
confirmedCheckBox = new AjaxCheckBox(
"confirmed",
new PropertyModel<Boolean>( this, "confirmed" )
) {
@Override
protected void onUpdate( AjaxRequestTarget target ) {
Change change = new Change( Change.Type.Updated, getPart() );
change.setProperty( "checklist" );
update( target, change );
}
};
confirmedCheckBox.setOutputMarkupId( true );
addOrReplace( confirmedCheckBox );
}
public boolean isConfirmed() {
return getChecklist().isConfirmed();
}
public void setConfirmed( boolean val ) {
Command command = new UpdateSegmentObject(
getUsername(),
getPart(),
"checklist.confirmed",
val,
UpdateObject.Action.Set
);
command.makeUndoable( false );
doCommand( command );
}
@Override
public void changed( Change change ) {
if ( change.isForInstanceOf( Part.class ) && change.isForProperty( "checklist" ) ) {
if ( change.isExpanded() ) // step is expanded
editedStepRef = (String) change.getQualifier( "stepRef" );
else if ( change.isCollapsed() || change.hasQualifier( "deleted-step" ) ) // step collapsed or deleted
editedStepRef = null;
else
super.changed( change );
} else {
super.changed( change );
}
}
@Override
public void updateWith( AjaxRequestTarget target, Change change, List<Updatable> updated ) {
if ( change.isForInstanceOf( Part.class ) && change.isForProperty( "checklist" ) ) {
addStepPanels();
target.add( stepsContainer );
addConfirmation();
target.add( confirmedCheckBox );
if ( !change.isExpanded() && !change.isCollapsed() ) {
super.updateWith( target, change, updated );
}
} else {
super.updateWith( target, change, updated );
}
}
}
|
[
"denis@baad322d-9929-0410-88f0-f92e8ff3e1bd"
] |
denis@baad322d-9929-0410-88f0-f92e8ff3e1bd
|
441cb9320932014deec738f88e6de414eb6ec40d
|
d84faef903753f2a76bda10f1bf7acce9889f2b8
|
/app/src/main/java/com/ntga/web/WebQueryResult.java
|
1c9b67f5399de81076e9be1b46f7935c28398c49
|
[] |
no_license
|
lixd17820/ntgacard
|
c6b16b5e09e0b8a19f56ab6ef3dd53ef2c51da6e
|
e5bf6064d61d041550febdd662ad37df98f6c7c4
|
refs/heads/master
| 2021-07-07T21:58:13.078957 | 2017-10-03T00:49:48 | 2017-10-03T00:49:48 | 105,600,425 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 909 |
java
|
package com.ntga.web;
import java.io.Serializable;
/**
* 本类用与WEB查询返回的结果 <br>
*
* @author lenovo
*/
public class WebQueryResult<E> implements Serializable {
/**
*
*/
private int status;
private E result;
private String stMs;
public WebQueryResult() {
}
public WebQueryResult(int status, E result) {
this.status = status;
this.result = result;
}
public WebQueryResult(int status) {
this.status = status;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public E getResult() {
return result;
}
public void setResult(E result) {
this.result = result;
}
public String getStMs() {
return stMs;
}
public void setStMs(String stMs) {
this.stMs = stMs;
}
}
|
[
"[email protected]"
] | |
5619c97711913216e994aa48144922729b5a5621
|
43e20168cda99f5dc8c6da2a03fec1e3a374bac5
|
/src/main/java/Shard.java
|
18877db68fcc51cd90faf74d367e1914fcf26f86
|
[] |
no_license
|
Wizzy-wooz/sharding
|
eba171d80f0d90e51966cfba655362204ad0cec7
|
6d3b95147de472d50ca4a4d1a87a7d91b9c2f99e
|
refs/heads/master
| 2021-01-22T00:24:11.309158 | 2015-01-14T10:32:10 | 2015-01-14T10:32:10 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,834 |
java
|
import java.io.*;
import java.net.ServerSocket;
import java.net.Socket;
import java.nio.file.Files;
/**
* Created by serb on 14.01.15.
*/
public class Shard extends Thread {
private String rootFolder;
private Socket socket;
public Shard(String rootFolder, Socket socket) {
this.rootFolder = rootFolder;
File file = new File(rootFolder);
if(!file.exists())
file.mkdir();
this.socket = socket;
}
@Override
public void run() {
try (ObjectInputStream oin = new ObjectInputStream(socket.getInputStream());
ObjectOutputStream out = new ObjectOutputStream(socket.getOutputStream())) {
Object o = oin.readObject();
if (null != o) {
Request request = (Request) o;
switch (request.getCommand()) {
case CREATE:
if (writeObj(request.getObj())) {
out.writeObject(new Response(Status.CREATED));
} else
out.writeObject(new Response(Status.FAILED));
break;
case READ:
try (ObjectInputStream obin = new ObjectInputStream(new FileInputStream(rootFolder + request.getHash()));) {
out.writeObject(new Response(Status.READ, (SomeObject) obin.readObject()));
}catch (Exception e){
out.writeObject(new Response(Status.FAILED));
}
break;
case DELETE:
if (deleteObj(request.getObj())) {
out.writeObject(new Response(Status.DELETED));
} else
out.writeObject(new Response(Status.FAILED));
break;
}
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
private boolean deleteObj(SomeObject obj) {
File file = new File(rootFolder + obj.hashCode());
if (!file.exists())
return false;
else {
file.delete();
return true;
}
}
private boolean writeObj(SomeObject obj) {
try (ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(rootFolder + obj.hashCode()));) {
out.writeObject(obj);
return true;
} catch (IOException e) {
e.printStackTrace();
return false;
}
}
}
|
[
"[email protected]"
] | |
c30e0f692c33f9082f9b0b793b37990568499e42
|
d488e05d32337df1a5a6e35b0d80ac0612e2bce3
|
/app/src/main/java/cn/wydewy/wyplayer/entity/ScanInfo.java
|
0b55136a71393e5fd696499a2ade20d02d33f7b7
|
[] |
no_license
|
vnique/WYPlayer
|
ad243f3e0b603a9751446237d322292b6feb8398
|
000b16de8436dff36cac49d967dd095244f50092
|
refs/heads/master
| 2016-09-13T19:18:33.800356 | 2016-05-04T00:08:48 | 2016-05-04T00:11:02 | 57,962,207 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 770 |
java
|
package cn.wydewy.wyplayer.entity;
/**
* By wydewy 2013 Open Source Project
*
* <br>
* <b>扫描信息,SD卡路径和用户是否勾选</b></br>
*
* @author wydewy
* @version 2013.05.18 v1.0
*/
public class ScanInfo {
private String folderPath;// 文件夹路径
private boolean isChecked;// 用户是否勾选
public ScanInfo(String folderPath, boolean isChecked) {
// TODO Auto-generated constructor stub
this.folderPath = folderPath;
this.isChecked = isChecked;
}
public String getFolderPath() {
return folderPath;
}
public void setFolderPath(String folderPath) {
this.folderPath = folderPath;
}
public boolean isChecked() {
return isChecked;
}
public void setChecked(boolean isChecked) {
this.isChecked = isChecked;
}
}
|
[
"[email protected]"
] | |
d2bf799ccd25dc8aec6615cc264431ea2f368862
|
1069e21858603416894871d99069ea6ba42ea419
|
/app/src/main/java/com/zhouyou/cllayout/guideline/GuideLineActivity.java
|
010dcc2a1a2bb7a2de0406d66c43414d008413c5
|
[] |
no_license
|
Kaka252/ConstraintLayoutDemo
|
dc93202be9d923da0babdc448ce2b099bd2b8da6
|
d865bb526ac1b38e0a8aa2dc3069e2c14cb84f9b
|
refs/heads/master
| 2021-09-03T10:48:29.120124 | 2018-01-08T12:44:47 | 2018-01-08T12:44:47 | 115,871,256 | 3 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 848 |
java
|
package com.zhouyou.cllayout.guideline;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.widget.ListView;
import com.zhouyou.cllayout.R;
import com.zhouyou.cllayout.entity.User;
import com.zhouyou.cllayout.utils.UserManager;
import java.util.List;
/**
* Author: ZhouYou
* Date: 2018/1/8.
*/
public class GuideLineActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_guide_line);
ListView listView = findViewById(R.id.list_view);
List<User> users = UserManager.getUsers();
GuideLineAdapter adapter = new GuideLineAdapter(this, users);
listView.setAdapter(adapter);
}
}
|
[
"[email protected]"
] | |
d450790e6c167cf7ea90f10b2199db82e4671a7e
|
20427549791d43914be3f305b053a10e246c0bec
|
/custom/grocery/grocerystorefront/web/src/org/grocery/storefront/renderer/CMSLinkComponentRenderer.java
|
52d3583623177f7e1db3b8ae228331d26f149add
|
[] |
no_license
|
vaibhav29gupta/hybrisGrocery
|
b5fabc5598b83d1b47cd0ab2fd063d9b9a457ae6
|
31161717714c1a4d9c3267393cfda5ec05bedb9d
|
refs/heads/main
| 2023-06-15T15:07:49.394312 | 2021-07-12T08:09:19 | 2021-07-12T08:09:19 | 385,157,883 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 4,768 |
java
|
/*
* Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
*/
package org.grocery.storefront.renderer;
import com.sap.security.core.server.csi.XSSEncoder;
import de.hybris.platform.acceleratorcms.component.renderer.CMSComponentRenderer;
import de.hybris.platform.acceleratorstorefrontcommons.tags.Functions;
import de.hybris.platform.category.model.CategoryModel;
import de.hybris.platform.cms2.enums.LinkTargets;
import de.hybris.platform.cms2.model.contents.components.CMSLinkComponentModel;
import de.hybris.platform.commercefacades.product.data.CategoryData;
import de.hybris.platform.commercefacades.product.data.ProductData;
import de.hybris.platform.core.model.product.ProductModel;
import de.hybris.platform.servicelayer.dto.converter.Converter;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.PageContext;
import org.apache.commons.lang.StringUtils;
import org.apache.log4j.Logger;
import org.apache.taglibs.standard.tag.common.core.UrlSupport;
import org.owasp.html.HtmlPolicyBuilder;
import org.owasp.html.PolicyFactory;
import org.springframework.beans.factory.annotation.Required;
import static de.hybris.platform.acceleratorstorefrontcommons.tags.HTMLSanitizer.sanitizeHTML;
/**
*/
public class CMSLinkComponentRenderer implements CMSComponentRenderer<CMSLinkComponentModel>
{
private static final Logger LOG = Logger.getLogger(CMSLinkComponentRenderer.class);
protected static final PolicyFactory policy = new HtmlPolicyBuilder().allowStandardUrlProtocols()
.allowElements("a", "span")
.allowAttributes( "href", "style", "class", "title", "target", "download", "rel", "rev",
"hreflang", "type", "text", "accesskey", "contenteditable", "contextmenu", "dir", "draggable",
"dropzone", "hidden", "id", "lang", "spellcheck", "tabindex", "translate")
.onElements("a")
.allowAttributes("class")
.onElements("span")
.toFactory();
private Converter<ProductModel, ProductData> productUrlConverter;
private Converter<CategoryModel, CategoryData> categoryUrlConverter;
protected Converter<ProductModel, ProductData> getProductUrlConverter()
{
return productUrlConverter;
}
@Required
public void setProductUrlConverter(final Converter<ProductModel, ProductData> productUrlConverter)
{
this.productUrlConverter = productUrlConverter;
}
protected Converter<CategoryModel, CategoryData> getCategoryUrlConverter()
{
return categoryUrlConverter;
}
@Required
public void setCategoryUrlConverter(final Converter<CategoryModel, CategoryData> categoryUrlConverter)
{
this.categoryUrlConverter = categoryUrlConverter;
}
protected String getUrl(final CMSLinkComponentModel component)
{
// Call the function getUrlForCMSLinkComponent so that this code is only in one place
return Functions.getUrlForCMSLinkComponent(component, getProductUrlConverter(), getCategoryUrlConverter());
}
@Override
public void renderComponent(final PageContext pageContext, final CMSLinkComponentModel component) throws ServletException,
IOException
{
try
{
final String url = getUrl(component);
final String encodedUrl = UrlSupport.resolveUrl(url, null, pageContext);
final String linkName = component.getLinkName();
StringBuilder html = new StringBuilder();
if (StringUtils.isNotBlank(linkName) && StringUtils.isBlank(encodedUrl))
{
// <span class="empty-nav-item">${component.linkName}</span>
html.append("<span class=\"empty-nav-item\">");
html.append(linkName);
html.append("</span>");
}
else
{
// <a href="${encodedUrl}" ${component.styleAttributes} title="${component.linkName}"
// ${component.target == null || component.target == 'SAMEWINDOW' ? '' : 'target="_blank"'}>${component.linkName}</a>
html.append("<a href=\"");
html.append(encodedUrl);
html.append("\" ");
// Write additional attributes onto the link
if (component.getStyleAttributes() != null)
{
html.append(component.getStyleAttributes());
}
if (StringUtils.isNotBlank(linkName))
{
html.append(" title=\"");
html.append(linkName);
html.append("\" ");
}
if (component.getTarget() != null && !LinkTargets.SAMEWINDOW.equals(component.getTarget()))
{
html.append(" target=\"_blank\"");
}
html.append(">");
if (StringUtils.isNotBlank(linkName))
{
html.append(linkName);
}
html.append("</a>");
}
String sanitizedHTML = policy.sanitize(html.toString());
final JspWriter out = pageContext.getOut();
out.write(sanitizedHTML);
}
catch (final JspException e)
{
if (LOG.isDebugEnabled())
{
LOG.debug(e);
}
}
}
}
|
[
"[email protected]"
] | |
05ae3b23d6fd4945027d1f08f43aae98b34a1275
|
fe46a94ffb1562594c940273fbf07fedcba713c8
|
/app/src/main/java/dev/pechy/mansionbooking/model/ModelDetailBooking.java
|
5c82d9f189dddc0e120c9fdb140ca13756ea0be4
|
[] |
no_license
|
pechpijit/MansionBooking2
|
bb055943861c7295a2a812f00b2a17aae6c0e249
|
8aa830af5ae5cbd10ca718671ca7f1bcd14ad863
|
refs/heads/master
| 2021-08-23T17:36:57.609209 | 2017-12-05T22:41:53 | 2017-12-05T22:41:53 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 869 |
java
|
package dev.pechy.mansionbooking.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
public class ModelDetailBooking {
@SerializedName("room")
@Expose
private ModelRoom room;
@SerializedName("roomtype")
@Expose
private String roomtype;
@SerializedName("booking")
@Expose
private ModelBooking booking;
public ModelRoom getRoom() {
return room;
}
public void setRoom(ModelRoom room) {
this.room = room;
}
public String getRoomtype() {
return roomtype;
}
public void setRoomtype(String roomtype) {
this.roomtype = roomtype;
}
public ModelBooking getBooking() {
return booking;
}
public void setBooking(ModelBooking booking) {
this.booking = booking;
}
}
|
[
"[email protected]"
] | |
586cd22481bba0fa14285361746d5e9ecb13c7fa
|
8751c2ba430e6e618f0e7b024ddfa327098d1b51
|
/app/src/main/java/com/ft/myapplication2/interface1/SplashPresenter.java
|
c4023cb655c14d58ed9680fad8c49b7bfc3929c3
|
[] |
no_license
|
zhangss007/MyTestToolDemo
|
9a65ea9b2237ab02baaba7ecb6c3581a497c68f8
|
5b91c1ae2604be4914ef057e639dd645c79dfae8
|
refs/heads/master
| 2021-01-20T20:44:42.118341 | 2016-08-16T10:18:35 | 2016-08-16T10:18:35 | 64,832,492 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 537 |
java
|
package com.ft.myapplication2.interface1;
import android.support.annotation.NonNull;
/**
* Created by FT_ZSS on 2016/8/3.
*/
public class SplashPresenter implements SplashContract.Presenter {
SplashContract.View mSplashView;
@Override
public void initUmeng() {
}
@Override
public void initHupuSign() {
}
@Override
public void attachView(@NonNull SplashContract.View view) {
mSplashView = view;
}
@Override
public void detachView() {
mSplashView = null;
}
}
|
[
"[email protected]"
] | |
198c40c461ca1337e642a0903c6c27035b90bdee
|
57f401b43bbf8cbbe1360f36a51d2cf8a330d1fa
|
/app/src/test/java/com/example/android/kg/ExampleUnitTest.java
|
bea0eef2dd2cd593c6a138fbb1614e8459f64216
|
[] |
no_license
|
efraindiaz/KG
|
2054818a4c679d22c864cf81f7ca9452b7d3e242
|
2e663118529f2b3f797736ce3c306aa20841b4d1
|
refs/heads/master
| 2020-12-31T00:02:59.646894 | 2017-03-30T14:18:59 | 2017-03-30T14:18:59 | 86,587,583 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 400 |
java
|
package com.example.android.kg;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
|
[
"[email protected]"
] | |
6e4d83a08c38fe072216134fe8475ac8cd5a8dcb
|
991b323c8c563064bf76a1abb9753b612753293d
|
/2019_11_30_1/src/Main.java
|
8cf5ff523b026942df859899a8f21fa5434b9e4f
|
[] |
no_license
|
Madrid-7/Java_test
|
019f6b0bddb978ff92e41eeb8670f2586885a5a3
|
825f76776c9d01564f1758002df5c6260168462b
|
refs/heads/master
| 2021-07-08T06:59:33.388399 | 2020-12-09T17:57:47 | 2020-12-09T17:57:47 | 214,750,086 | 3 | 6 | null | null | null | null |
UTF-8
|
Java
| false | false | 324 |
java
|
public class Main {
public static void main(String[] args) {
List list1 = new List();
list1.addFirst(5);
list1.addFirst(4);
list1.addFirst(3);
list1.addFirst(2);
list1.addFirst(1);
list1.printList();
list1.reverseList();
list1.printList();
}
}
|
[
"[email protected]"
] | |
b64cfdc57dc2dff87ea7c2349c0ddd70b4f87d7a
|
7033752d2ad908ea679e5b2db6cf3e22752c944e
|
/RWTChecker/src/rwtchecker/annotation/RWTAnnotation.java
|
93b6ffd166aa27ac9443326cb04b2472bdf2a730
|
[] |
no_license
|
jx5c/Real-World-Type-System
|
b791a05724a60a55329168ca4b21dff2f64cc71f
|
1b5b99508617fdb59e1e6b68c1569282efd0ddfc
|
refs/heads/master
| 2020-05-29T09:16:47.351083 | 2017-08-31T15:27:53 | 2017-08-31T15:32:27 | 69,497,590 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,493 |
java
|
package rwtchecker.annotation;
public class RWTAnnotation{
public static String Define = "def";
public static String Constant = "constant";
public static String tagNameForAnnotation = "@CM";
public static String cmTypeForAnnotation = "cmt";
public static String Return = "return";
public static String Invariant = "inv";
public static String unitsAtt = "#units";
private String annotationType = "";
private String annotationContents = "";
public String getAnnotationType() {
return annotationType;
}
public void setAnnotationType(String annotationType) {
this.annotationType = annotationType;
}
public String getAnnotationContents() {
return annotationContents;
}
public void setAnnotationContents(String annotationContents) {
this.annotationContents = annotationContents;
}
public String toString(){
return "annotation type is:" + this.annotationType + "annotation contents are "+this.annotationContents;
}
public boolean equals(Object object){
if(object instanceof RWTAnnotation){
String annotationContents = ((RWTAnnotation)object).getAnnotationContents();
if(this.annotationType.equals(((RWTAnnotation)object).getAnnotationType())){
if(this.annotationType.equals(RWTAnnotation.Define)){
if(this.annotationContents.split("=")[0].equals(annotationContents.split("=")[0])){
return true;
}
}else if(this.annotationType.equals(RWTAnnotation.Return)){
return true;
}
}
}
return false;
}
}
|
[
"[email protected]"
] | |
d7885ae7ab1904c6c19bdd51ae59428669bb4f3c
|
0db5294cdafd3382ea7f835a6e98bfede5a73457
|
/trunk/src/UI/action/zyjk/JcjgnjAction.java
|
c7b3eb33d0d83271e0eeb45dccef7313a89acd53
|
[] |
no_license
|
BGCX262/zyjk-svn-to-git
|
a4798e09bb60446e884e0427b568643bae07e80c
|
8f1c15e5a2311ca878e90fba8595f2a1b7c9117f
|
refs/heads/master
| 2020-06-03T19:23:56.395161 | 2015-08-23T06:49:37 | 2015-08-23T06:49:37 | 41,251,930 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 8,293 |
java
|
/****************************************************
* <p>处理内容:</p>
* <p>Copyright: Copyright (c) 2010</p>;
* @author ;
* 改版履历;
* Rev - Date ------- Name ---------- Note -------------------
* 1.0 2013-06-08 新規作成 ;
****************************************************/
package UI.action.zyjk;
import org.apache.log4j.Logger;
import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.Namespace;
import org.apache.struts2.convention.annotation.ParentPackage;
import org.apache.struts2.convention.annotation.Result;
import st.platform.db.ConnectionManager;
import st.platform.db.DatabaseConnection;
import st.platform.db.SerialNumber;
import st.platform.utils.Config;
import st.portal.action.BasicAction;
import st.portal.action.MessageBean;
import st.portal.action.PageBean;
import worksynch.util.WriteRecordUtil;
import UI.dao.zyjk.JcjgbaxxBean;
import UI.dao.zyjk.JcjgnjglBean;
import UI.message.MisConstant;
import UI.util.BusinessDate;
@ParentPackage("struts-filter")
@Namespace("/UI/action/zyjk")
public class JcjgnjAction extends BasicAction {
private static final long serialVersionUID = 1L;
private static Logger logger = Logger.getLogger(JcjgnjAction.class);
private JcjgnjglBean jcjgnjglBean; // 返回的信息;
private String strWhere=""; // 查询条件;
private String strSysno=""; // 主键编号;
private PageBean pageBean; // 分页类;
private MessageBean messageBean;// 操作状态
private String jgbh;//机构编号
/**
*
* 查询信息 返回json信息
* @return
*/
@Action(value = "JcjgnjAction_findObjson", results = {
@Result(type = "json", name = MisConstant.FINDOBJSON, params = { "includeProperties","messageBean.*,jcjgnjglBean.*" }) })
public String findObjson() {
try {
jcjgnjglBean = new JcjgnjglBean();
if (!(messageBean.getMethod().equals("add"))) {
jcjgnjglBean = (JcjgnjglBean)findByKey(jcjgnjglBean, " where Sysno ='" + strSysno + "'");
if (jcjgnjglBean != null) {
messageBean.setCheckFlag(MisConstant.MSG_SUCCESS);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_SUCCESS);
}else{
messageBean.setCheckFlag(MisConstant.MSG_FAIL);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_FAIL);
}
}
} catch (Exception e) {;
// TODO Auto-generated catch block
// 设置错误返回的提示
logger.error(MisConstant.MSG_OPERATE_FAIL, e);
messageBean.setCheckFlag(MisConstant.MSG_FAIL);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_FAIL);
}
return MisConstant.FINDOBJSON;
}
/**
*
* 查询信息 返回jsp
* @return
*/
@Action(value = "JcjgnjAction_findByKey", results = {
@Result(name = MisConstant.FINDBYKEY, location = "/UI/zyjk/jcjg/jcjgnj/jcjgnjinfo.jsp") })
public String findByKey() {
try {
jcjgnjglBean = new JcjgnjglBean();
jcjgnjglBean.setJgbh(jgbh);
JcjgbaxxBean ba=new JcjgbaxxBean();
ba=ba.findFirst(" where sysno='"+jgbh+"'");
if(null==ba){
ba=new JcjgbaxxBean();
}
jcjgnjglBean.setJgmc(ba.getDwmc());
if (!(messageBean.getMethod().equals("add"))) {
jcjgnjglBean = (JcjgnjglBean)findByKey(jcjgnjglBean, " where Sysno ='" + strSysno + "'");
if (jcjgnjglBean != null) {
messageBean.setCheckFlag(MisConstant.MSG_SUCCESS);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_SUCCESS);
}else{
messageBean.setCheckFlag(MisConstant.MSG_FAIL);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_FAIL);
}
}
} catch (Exception e) {;
// TODO Auto-generated catch block
// 设置错误返回的提示
logger.error(MisConstant.MSG_OPERATE_FAIL, e);
messageBean.setCheckFlag(MisConstant.MSG_FAIL);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_FAIL);
}
return MisConstant.FINDBYKEY;
}
/**
*
*添加方法
* @return
*/
@Action(value = "JcjgnjAction_insert")
public String insert() {
// 打开数据库连接
ConnectionManager cm = ConnectionManager.getInstance();
DatabaseConnection dc = cm.get();
//开启事务
dc.begin();
int count=0;
try {
String number = Config.getProperty("distcode")+"-"+BusinessDate.getNoFormatToday() + "-" + SerialNumber.getNextSerialNo("67");
jcjgnjglBean.setSysno(number);
// JcjgbaxxBean ba=new JcjgbaxxBean();
// ba=ba.findFirst(" where sysno='"+jcjgnjglBean.getJgbh()+"'");
// jcjgnjglBean.setJgmc(ba.getDwmc());
messageBean = insert(jcjgnjglBean);
count=messageBean.getCheckFlag();
//进行数据同步
if(Config.getProperty("isSynch").equals("1")){
if(count==1){
WriteRecordUtil.write(jcjgnjglBean, jcjgnjglBean.getClass().getName(), "jcjgnjgl", "sysno", number, "add",cm);
}
}
} catch (Exception e) {;
// TODO Auto-generated catch block
// 设置错误返回的提示
logger.error(MisConstant.MSG_OPERATE_FAIL, e);
messageBean.setCheckFlag(MisConstant.MSG_FAIL);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_FAIL);
}finally{
if ( count > 0 ) {
dc.commit();
} else {
dc.rollback();
}
cm.release();
}
return MisConstant.RETMESSAGE;
}
/**
*
* 修改方法
* @return
*/
@Action(value = "JcjgnjAction_update")
public String update() {
//打开数据库连接
ConnectionManager cm = ConnectionManager.getInstance();
DatabaseConnection dc = cm.get();
//开启事务
dc.begin();
int count=0;
try {
messageBean = update(jcjgnjglBean, " where Sysno ='" + jcjgnjglBean.getSysno() + "'");;
count=messageBean.getCheckFlag();
//往记录表里面插入数据
if(Config.getProperty("isSynch").equals("1")){
if(count==1){
WriteRecordUtil.write(jcjgnjglBean, jcjgnjglBean.getClass().getName(), "jcjgnjgl", "sysno", jcjgnjglBean.getSysno(), "update",cm);
}
}
} catch (Exception e) {;
// TODO Auto-generated catch block
// 设置错误返回的提示
logger.error(MisConstant.MSG_OPERATE_FAIL, e);
messageBean.setCheckFlag(MisConstant.MSG_FAIL);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_FAIL);
}finally{
if ( count > 0 ) {
dc.commit();
} else {
dc.rollback();
}
cm.release();
}
return MisConstant.RETMESSAGE;
}
/**
*
* 删除改方法
* @return
*/
@Action(value = "JcjgnjAction_delete")
public String delete() {
// 打开数据库连接
ConnectionManager cm = ConnectionManager.getInstance();
DatabaseConnection dc = cm.get();
//开启事务
dc.begin();
int count=0;
try {
jcjgnjglBean = new JcjgnjglBean();
messageBean = delete(jcjgnjglBean, "where Sysno in (" + strSysno + ")");
count=messageBean.getCheckFlag();
//往记录表里面插入数据
if(Config.getProperty("isSynch").equals("1")){
if(count==1){
WriteRecordUtil.write(jcjgnjglBean, jcjgnjglBean.getClass().getName(), "jcjgnjgl", "sysno",strSysno, "delete",cm);
}
}
} catch (Exception e) {;
// TODO Auto-generated catch block
// 设置错误返回的提示
logger.error(MisConstant.MSG_OPERATE_FAIL, e);
messageBean.setCheckFlag(MisConstant.MSG_FAIL);
messageBean.setCheckMessage(MisConstant.MSG_OPERATE_FAIL);
}finally{
if ( count > 0 ) {
dc.commit();
} else {
dc.rollback();
}
cm.release();
}
return MisConstant.RETMESSAGE;
}
public JcjgnjglBean getJcjgnjglBean() {
return jcjgnjglBean;
}
public void setJcjgnjglBean(JcjgnjglBean jcjgnjglBean) {
this.jcjgnjglBean = jcjgnjglBean;
}
public MessageBean getMessageBean() {
return messageBean;
}
public void setMessageBean(MessageBean messageBean) {
this.messageBean = messageBean;
}
public PageBean getPageBean() {
return pageBean;
}
public void setPageBean(PageBean pageBean) {
this.pageBean = pageBean;
}
public String getStrSysno() {
return strSysno;
}
public void setStrSysno(String strSysno) {
this.strSysno = strSysno;
}
public String getStrWhere() {
return strWhere;
}
public void setStrWhere(String strWhere) {
this.strWhere = strWhere;
}
public String getJgbh() {
return jgbh;
}
public void setJgbh(String jgbh) {
this.jgbh = jgbh;
}
}
|
[
"[email protected]"
] | |
c32588641eb6dde81077b546ae982c2dbc48832f
|
401138736d622b76ed0bcab85612a259727f54d5
|
/src/Clases/Presentacion/Command/cmTrabajador/cmMostrarTrabajadores.java
|
755d9960420bc59bd97398bf6d27ea19b51456bc
|
[
"MIT"
] |
permissive
|
iburgoa13/Modelado-de-Software
|
820059c799b583f1851850f09d7ac66ed84d907c
|
30a9b84b46d435b74f5dc0511abf3b3f2af08a35
|
refs/heads/main
| 2023-02-18T23:38:46.637479 | 2021-01-20T20:23:31 | 2021-01-20T20:23:31 | 331,418,661 | 1 | 0 | null | null | null | null |
WINDOWS-1250
|
Java
| false | false | 754 |
java
|
package Clases.Presentación.Command.cmTrabajador;
import java.util.List;
import Clases.Negocio.FactoriaSA;
import Clases.Negocio.Producto.TProducto;
import Clases.Negocio.Trabajador.TTrabajador;
import Clases.Presentación.Contexto;
import Clases.Presentación.Command.Command;
import Clases.Presentación.Command.Events;
public class cmMostrarTrabajadores implements Command {
public cmMostrarTrabajadores() {
}
@Override
public Contexto execute(Object data) {
List<TTrabajador> tbjs = FactoriaSA.getInstance().generateSATrabajador().listarTrabajadores();
if(tbjs != null) {
return new Contexto(Events.MOSTRAR_TRABAJADORES_OK,tbjs);
}
else return new Contexto(Events.MOSTRAR_TRABAJADORES_KO,tbjs);
}
}
|
[
"[email protected]"
] | |
f799eb2bf610658bb5c3597ee789868e63a62ee3
|
b41d4129451a0051e789e4fda25d9bf6b8c1c5f5
|
/CodeWithMoshPart3/src/com/halil/javaPart3/Exceptions/Account.java
|
802b5d7c9f2890a539a0e9bb8f6b607e5981cada
|
[] |
no_license
|
Halilurrahman/IdeaProjects
|
79473d9b87520dda73dc3f41c48e5396e19dc8c7
|
a1e8a94645012949a83237830d42dcd2d00cfe9c
|
refs/heads/main
| 2023-02-14T18:56:02.899425 | 2021-01-04T12:26:34 | 2021-01-04T12:26:34 | 313,125,637 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 449 |
java
|
package com.halil.javaPart3.Exceptions;
import java.io.IOException;
public class Account {
private float balance;
// public void deposit(float value) throws IOException {
// if (value<= 0)
// throw new IOException();
// }
public void withdraw(float value) throws AccountException {
if(value > balance)
// throw AccountException = new AccountException(new InsufficientFundsException());
}
}
|
[
"[email protected]"
] | |
d858a9f2e7d7f9a52481f92e32a7c42a298802ae
|
9e6615165051a4ba9077a710e0c5110364fa7b7c
|
/clojure-netbeans/src/org/adrianwalker/clojure/netbeans/parser/SyntaxError.java
|
c61de396e232e566e40afc8c169e29f5c49fe2c3
|
[] |
no_license
|
adrianwalker/netbeans-clojure-module
|
30177a2143fb2d995f11c17629b5df2770ede48f
|
9a3ceec5622594d9d1807a0671ffacc7486a83b2
|
refs/heads/master
| 2021-01-10T19:55:48.429152 | 2015-01-04T15:50:23 | 2015-01-04T15:50:23 | 28,391,086 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,131 |
java
|
package org.adrianwalker.clojure.netbeans.parser;
import org.antlr.v4.runtime.RecognitionException;
public class SyntaxError {
private RecognitionException exception;
private String message;
private int line;
private int charPositionInLine;
public SyntaxError() {
}
public SyntaxError(RecognitionException exception, String message, int line, int charPositionInLine) {
this.exception = exception;
this.message = message;
this.line = line;
this.charPositionInLine = charPositionInLine;
}
public RecognitionException getException() {
return exception;
}
public void setException(RecognitionException exception) {
this.exception = exception;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public int getLine() {
return line;
}
public void setLine(int line) {
this.line = line;
}
public int getCharPositionInLine() {
return charPositionInLine;
}
public void setCharPositionInLine(int charPositionInLine) {
this.charPositionInLine = charPositionInLine;
}
}
|
[
"[email protected]"
] | |
e6d5d06aa3dac030307c4698fc00af79aecc9b96
|
1fb1a5a4f008f061a04e8c479c5e1c71ee7d0343
|
/codigoBusiness/Persona.java
|
785ff337a7952da2990694e12800b5ce76cf91f1
|
[] |
no_license
|
Zefirot/P3_Trabajo_Practico2
|
f2128b4c138b98bea939b65adb3935fda460b1bc
|
8ce434fb5c9f7214fbeaca7ce62aa0ef087ee230
|
refs/heads/master
| 2023-01-11T16:46:48.336905 | 2020-11-10T00:53:17 | 2020-11-10T00:53:17 | 304,138,817 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 984 |
java
|
package codigoBusiness;
public class Persona {
private String nombre;
private int deporte,musica,espectaculo,ciencia;
public Persona(String nombre, int deporte,int musica, int espectaculo, int ciencia) {
this.nombre=nombre;
this.deporte=deporte;
this.musica=musica;
this.espectaculo=espectaculo;
this.ciencia=ciencia;
}
//Seters y Getters
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public int getDeporte() {
return deporte;
}
public void setDeporte(int deporte) {
this.deporte = deporte;
}
public int getMusica() {
return musica;
}
public void setMusica(int musica) {
this.musica = musica;
}
public int getEspectaculo() {
return espectaculo;
}
public void setEspectaculo(int espectaculo) {
this.espectaculo = espectaculo;
}
public int getCiencia() {
return ciencia;
}
public void setCiencia(int ciencia) {
this.ciencia = ciencia;
}
}
|
[
"[email protected]"
] | |
b3c64684b28a690f06203285750c5255c2bba73c
|
19ade9a1ff624ad97e403bb41c105ad28e1bfbf2
|
/app/src/main/java/com/lesgood/guru/base/BaseFragment.java
|
606e0e14be36fe36c94e3420d730d63f34c26ef8
|
[] |
no_license
|
sidrive/lesgoodGuru
|
2786480a12b88a255c9368aba349baaf389a52f7
|
7a33f521ce7fee5eb9fefe13bf8cfaf483b10256
|
refs/heads/master
| 2021-04-06T00:10:15.871739 | 2017-05-07T16:23:15 | 2017-05-07T16:23:15 | 124,497,964 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 365 |
java
|
package com.lesgood.guru.base;
import android.os.Bundle;
import android.support.v4.app.Fragment;
public abstract class BaseFragment extends Fragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setupFragmentComponent();
}
protected abstract void setupFragmentComponent();
}
|
[
"[email protected]"
] | |
6b3428894f4c747cc27fa753e91e35044fe996b2
|
b64276e0801091a260cb846fa31707a9f5574fdf
|
/src/main/java/prework/dao/DAODepartmentCustom.java
|
e0101de4001bd0bc025ab1eff51ab4e95dcbbc1f
|
[] |
no_license
|
Vortlx/PreWork-Security-
|
8f5be98b633fd2e53b9f8f827738fe102965d29b
|
8cce30e993c36092e3895c11ca5ccbb6a0e038e5
|
refs/heads/master
| 2020-12-24T12:20:35.830329 | 2017-01-11T04:29:49 | 2017-01-11T04:29:49 | 73,053,751 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 508 |
java
|
package prework.dao;
import java.util.List;
import java.util.Set;
import prework.entities.Department;
import prework.entities.Group;
import prework.entities.Student;
import prework.entities.Teacher;
public interface DAODepartmentCustom {
void addGroup(int depId, Group group);
void changeName(int depId, String newName);
Department getByName(String name);
Group getGroup(int depId, String groupName);
Teacher getTeacher(int depId, String teacherName, String teacherFamilyName);
}
|
[
"[email protected]"
] | |
1fc6ce526764528e897e1192d4a4ce1b46f9f064
|
5fe70f7634032cb77cc57cba778d18d47a764b6c
|
/openbp-cockpit/src/main/java/org/openbp/cockpit/plugins/debugger/DebuggerServerEvent.java
|
1f4e265c3114a1ad1d19d38f3c95faf68891922a
|
[
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] |
permissive
|
cleancode1116/OpenBP
|
cab222b3e336f1c81d6bc832e3c0d53244c13746
|
460a09c2f396ed1f77add70637644d254326d350
|
refs/heads/master
| 2020-07-11T06:07:24.821569 | 2016-11-18T07:43:22 | 2016-11-18T07:43:22 | 74,003,934 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 4,226 |
java
|
/*
* Copyright 2007 skynamics AG
*
* 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.openbp.cockpit.plugins.debugger;
import org.openbp.core.engine.debugger.DebuggerEvent;
import org.openbp.core.model.ModelQualifier;
import org.openbp.jaspira.event.JaspiraEvent;
import org.openbp.jaspira.plugin.Plugin;
/**
* Client event that wraps a debugger server event.
* The event information is contained in the server event class
* {@link org.openbp.core.engine.debugger.DebuggerEvent}<br>
* The event name is the same as defined in the
* the EngineTraceEvent class.
*
* @author Stephan Moritz
*/
public class DebuggerServerEvent extends JaspiraEvent
{
/** Basename for events */
public static final String BASE = "debugger.server.";
/** Event */
private DebuggerEvent debuggerEvent;
/**
* Constructor.
*
* @param source Source plugin
* @param debuggerEvent Debugger event from the server that initiated this event
*/
public DebuggerServerEvent(Plugin source, DebuggerEvent debuggerEvent)
{
super(source, BASE + debuggerEvent.getEventType());
this.debuggerEvent = debuggerEvent;
}
/**
* Gets the underlying debugger event.
* @nowarn
*/
public DebuggerEvent getDebuggerEvent()
{
return debuggerEvent;
}
/**
* Gets the event type.
* @return The event type class)
*/
public String getEventType()
{
return debuggerEvent.getEventType();
}
/**
* Gets the current position of halted process.
* @nowarn
*/
public ModelQualifier getHaltedPosition()
{
return debuggerEvent.getHaltedPosition();
}
/**
* Gets the exception that has occurred.
* @nowarn
*/
public Throwable getException()
{
return debuggerEvent.getException();
}
/**
* Gets the executed data link.
* @nowarn
*/
public ModelQualifier getControlLinkQualifier()
{
return debuggerEvent.getControlLinkQualifier();
}
/**
* Gets the executed control link.
* @nowarn
*/
public ModelQualifier getDataLinkQualifier()
{
return debuggerEvent.getDataLinkQualifier();
}
/**
* Gets the source node socket.
* @nowarn
*/
public ModelQualifier getSourceSocketQualifier()
{
return debuggerEvent.getSourceSocketQualifier();
}
/**
* Gets the target node socket.
* @nowarn
*/
public ModelQualifier getTargetSocketQualifier()
{
return debuggerEvent.getTargetSocketQualifier();
}
/**
* Gets the source parameter.
* @nowarn
*/
public ModelQualifier getSourceParamName()
{
return debuggerEvent.getSourceParamName();
}
/**
* Gets the source parameter member path.
* @nowarn
*/
public String getSourceMemberPath()
{
return debuggerEvent.getSourceMemberPath();
}
/**
* Gets the target parameter.
* @nowarn
*/
public ModelQualifier getTargetParamName()
{
return debuggerEvent.getTargetParamName();
}
/**
* Gets the target parameter member path.
* @nowarn
*/
public String getTargetMemberPath()
{
return debuggerEvent.getTargetMemberPath();
}
/**
* Gets the param value.
* @nowarn
*/
public Object getParamValue()
{
return debuggerEvent.getParamValue();
}
/**
* Gets the string representation of the exception that has occurred.
* This method is used if the thorwable is not able to be transfered with
* RMI.
*
* @nowarn
*/
public String getExceptionString()
{
return debuggerEvent.getExceptionString();
}
/**
* Gets the param value as string.
* @nowarn
*/
public String getParamValueString()
{
return debuggerEvent.getParamValueString();
}
}
|
[
"[email protected]"
] | |
296d46d95998c7ec248e32447fc16697cc0ed27e
|
1c4fa69c68c075af7b529447a51349ec58bae7a5
|
/Code/app/src/main/java/cn/fizzo/hub/school/utils/TimeU.java
|
e5484ea00a42e816f7c0b430c6c34be37c13ca1c
|
[] |
no_license
|
RaulFan2019/SchoolHub
|
daa3d5bda9e504144f794ca37993aa37ddc86e90
|
12d23acc61798bca6e076048cc32798547c417d0
|
refs/heads/master
| 2021-11-03T08:35:37.374144 | 2019-04-26T06:02:58 | 2019-04-26T06:02:58 | 183,540,856 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 8,519 |
java
|
package cn.fizzo.hub.school.utils;
import android.content.Context;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import cn.fizzo.hub.school.R;
/**
* Created by Raul.fan on 2017/7/16 0016.
*/
public class TimeU {
private static final long ONE_SECOND = 1000;
private static final long ONE_MINUTE = ONE_SECOND * 60;
private static final long ONE_HOUR = ONE_MINUTE * 60;
private static final long ONE_DAY = ONE_HOUR * 24;
public static final String FORMAT_TYPE_1 = "yyyy-MM-dd HH:mm:ss";
public static final String FORMAT_TYPE_2 = "yyyy-MM-dd HH:mm";
public static final String FORMAT_TYPE_3 = "yyyy-MM-dd";
public static final String FORMAT_TYPE_4 = "MM月dd日 HH点mm分";
public static final String FORMAT_TYPE_5 = "HH:mm:ss";
public static final String FORMAT_TYPE_6 = "yyyy.MM.dd HH:mm";
public static final String FORMAT_TYPE_7 = "HH:mm";
public static final String FORMAT_TYPE_8 = "MM.dd HH:mm";
public static final String FORMAT_TYPE_9 = "MM月dd日";
public static final String FORMAT_TYPE_10 = "MM.dd";
/**
* 获取当前时间的String(yyyy-MM-dd HH:mm:ss)
*
* @return
*/
public static String NowTime(final String format) {
SimpleDateFormat df = new SimpleDateFormat(format);// 设置日期格式
return df.format(new Date());// new Date()为获取当前系统时间
}
/**
* 将时间转换为 String 形式
*
* @param date
* @return
*/
public static String formatDateToStr(final Date date, final String format) {
SimpleDateFormat sdf = new SimpleDateFormat(format);
return sdf.format(date);
}
/**
* 转换为date格式
*
* @param timeStr
* @param format
* @return
*/
public static Date formatStrToDate(final String timeStr, final String format) {
Date date = null;
SimpleDateFormat sdf = new SimpleDateFormat(format);
try {
date = sdf.parse(timeStr);
} catch (ParseException e) {
e.printStackTrace();
}
return date;
}
/**
* 获取中文版星期
*
* @return
*/
public static String getWeekCnStr(Context context) {
Calendar c = Calendar.getInstance();
if (c.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY) {
return context.getResources().getString(R.string.date_week_1);
}
if (c.get(Calendar.DAY_OF_WEEK) == Calendar.MONDAY) {
return context.getResources().getString(R.string.date_week_2);
}
if (c.get(Calendar.DAY_OF_WEEK) == Calendar.TUESDAY) {
return context.getResources().getString(R.string.date_week_3);
}
if (c.get(Calendar.DAY_OF_WEEK) == Calendar.WEDNESDAY) {
return context.getResources().getString(R.string.date_week_4);
}
if (c.get(Calendar.DAY_OF_WEEK) == Calendar.THURSDAY) {
return context.getResources().getString(R.string.date_week_5);
}
if (c.get(Calendar.DAY_OF_WEEK) == Calendar.FRIDAY) {
return context.getResources().getString(R.string.date_week_6);
}
if (c.get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY) {
return context.getResources().getString(R.string.date_week_7);
}
return "";
}
/**
* 秒换成时
*/
public static String formatSecondsToLongHourTime(long Seconds) {
long hour = Seconds / 3600;
long min = Seconds % 3600 / 60;
long sec = Seconds % 60;
String hourstr = ((hour < 10) ? ("0" + String.valueOf(hour)) : String.valueOf(hour));
String minstr = ((min < 10) ? ("0" + String.valueOf(min)) : String.valueOf(min));
String secstr = ((sec < 10) ? ("0" + String.valueOf(sec)) : String.valueOf(sec));
return hourstr + ":" + minstr + ":" + secstr;
}
/**
* 秒换成分:秒
*/
public static String formatSecondsToShortTime(long Seconds) {
long min = Seconds / 60;
long sec = Seconds % 60;
String minstr = ((min < 10) ? ("0" + String.valueOf(min)) : String.valueOf(min));
String secstr = ((sec < 10) ? ("0" + String.valueOf(sec)) : String.valueOf(sec));
return minstr + ":" + secstr;
}
/**
* 获取锻炼记录时间信息
*
* @param startTime
* @param endTime
* @return
*/
public static String getHistoryListTimeStr(final String startTime, final String endTime) {
return formatDateToStr(formatStrToDate(startTime, FORMAT_TYPE_1), FORMAT_TYPE_8)
+ "-"
+ formatDateToStr(formatStrToDate(endTime, FORMAT_TYPE_1), FORMAT_TYPE_7);
}
/**
* 获取锻炼记录头信息
*
* @param startTime
* @param endTime
* @return
*/
public static String getHistoryTitleStr(final String startTime, final String endTime) {
return formatDateToStr(formatStrToDate(startTime, FORMAT_TYPE_1), FORMAT_TYPE_6)
+ "-"
+ formatDateToStr(formatStrToDate(endTime, FORMAT_TYPE_1), FORMAT_TYPE_7);
}
/**
* 获取delay前的日期
*
* @param delay
* @return
*/
public static String getDayByDelay(int delay) {
SimpleDateFormat df = new SimpleDateFormat(FORMAT_TYPE_3);// 设置日期格式
Calendar ca = Calendar.getInstance();//得到一个Calendar的实例
ca.setTime(new Date()); //设置时间为当前时间
ca.add(Calendar.DATE, -delay); // 减delay
Date lastDate = ca.getTime(); //结果
return df.format(lastDate);
}
/**
* 获取delay week前的日期
*
* @param delay
* @return
*/
public static String getWeekByDelay(int delay) {
SimpleDateFormat df = new SimpleDateFormat(FORMAT_TYPE_3);// 设置日期格式
Calendar ca = Calendar.getInstance();//得到一个Calendar的实例
ca.setTime(new Date()); //设置时间为当前时间
ca.add(Calendar.WEEK_OF_YEAR, -delay); // 减delay
ca.set(Calendar.DAY_OF_WEEK, 1);
Date lastDate = ca.getTime(); //结果
return df.format(lastDate);
}
/**
* 获取delay month前的日期
*
* @param delay
* @return
*/
public static String getMonthByDelay(int delay) {
SimpleDateFormat df = new SimpleDateFormat(FORMAT_TYPE_3);// 设置日期格式
Calendar ca = Calendar.getInstance();//得到一个Calendar的实例
ca.setTime(new Date()); //设置时间为当前时间
ca.add(Calendar.MONTH, -delay); // 减delay
ca.set(Calendar.DAY_OF_MONTH, 1);
Date lastDate = ca.getTime(); //结果
return df.format(lastDate);
}
/**
* 获取2个起始时间之间的时间差
* "yyyy-MM-dd HH:mm:ss"
*
* @param beginTimeStr
* @param endTimeStr
* @return 秒
*/
public static long getTimeDiff(final String beginTimeStr, final String endTimeStr, final String format) {
SimpleDateFormat myFormatter = new SimpleDateFormat(format);
long time = 0;
try {
Date beginDate = myFormatter.parse(beginTimeStr);
Date endDate = myFormatter.parse(endTimeStr);
time = (beginDate.getTime() - endDate.getTime()) / 1000;
} catch (Exception e) {
return time;
}
return time;
}
/**
* 获取与现在的时间差
* "yyyy-MM-dd HH:mm:ss"
*
* @param beginTimeStr
* @return 秒
*/
public static long getTimeDiffWithNow(final String beginTimeStr, final String format) {
SimpleDateFormat myFormatter = new SimpleDateFormat(format);
long time = 0;
try {
Date beginDate = myFormatter.parse(beginTimeStr);
time = (System.currentTimeMillis() - beginDate.getTime()) / 1000;
} catch (Exception e) {
return time;
}
return time;
}
/**
* 秒换算成配速格式
*
* @return
*/
public static String formatSecondsToLessonDuration(long Seconds) {
long min = Seconds / 60;
long sec = Seconds % 60;
String minstr = ((min < 10) ? ("0" + String.valueOf(min)) : String.valueOf(min));
String secstr = ((sec < 10) ? ("0" + String.valueOf(sec)) : String.valueOf(sec));
return minstr + ":" + secstr;
}
}
|
[
"[email protected]"
] | |
a211998c4008e86df0eb371ca75e2bf2528d5741
|
7fd0e9e67f3ebd06e96c1a30b2c9ed22832d167a
|
/First_Spring_App/src/main/java/lv/fedkin/oleg/web/HelloController.java
|
33ee07dd35c44cd1bc82515943f44afe8fb4490a
|
[] |
no_license
|
olegFedkin/ProofOfConcepts
|
9a4502ef510601c562e8c01d37e726acd72c123b
|
ded48747c568540faf56d92abdcbb27871d796da
|
refs/heads/master
| 2021-01-04T02:36:58.365985 | 2013-09-05T14:31:22 | 2013-09-05T14:31:22 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 745 |
java
|
package lv.fedkin.oleg.web;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
public class HelloController implements Controller {
private final Log logger = LogFactory.getLog(getClass());
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
logger.info("Returning hello view");
return new ModelAndView("hello.jsp");
}
}
|
[
"[email protected]"
] | |
e1e8cea1d3b85a185b6856ef4680e3130a84ddeb
|
537a975f1be43656cf67d34337345c11a3c1c844
|
/hello/Array.java
|
49cd47f632ab13a1584cb3b6117fa5c10a297abe
|
[] |
no_license
|
GachonTM/Java_Practice
|
82982c948935d20897b978408b6b3aa920d228eb
|
e08d2d51998ebaa5ef357ba564a6460ed48d8602
|
refs/heads/main
| 2023-04-05T10:20:34.118674 | 2021-04-03T13:37:02 | 2021-04-03T13:37:02 | 349,967,902 | 0 | 0 | null | null | null | null |
WINDOWS-1252
|
Java
| false | false | 256 |
java
|
package hello;
public class Array {
public static void main(String[] args) {
String[] members = {"ym", "ch", "is"};
for (int i=0; i<members.length; i++) {
String member = members[i];
System.out.println(member + "»ó´ã¿Ï·á");
}
}
}
|
[
"[email protected]"
] | |
fa165d923a086bb602541ba136eadbbf1b0b45d1
|
1b6ecad3272337928f5819bfc8683eeee1f19d89
|
/branches/license-server-ehcache-os/system-tests/src/test/java/org/terracotta/ehcache/tests/container/BasicJTATestServlet.java
|
3af912d2a28d19eff80ae48937a879cff4473f01
|
[] |
no_license
|
MatthewRBruce/ehcache
|
77540643da5ca20b6fd5638221f4410a1baefe02
|
4365fc6cc87516344e95688c368d6a3d2cebbe5a
|
refs/heads/master
| 2020-12-27T18:55:00.785157 | 2015-01-21T07:11:38 | 2015-01-21T07:11:38 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,214 |
java
|
/*
* All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
*/
package org.terracotta.ehcache.tests.container;
import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;
import net.sf.ehcache.transaction.manager.DefaultTransactionManagerLookup;
import net.sf.ehcache.transaction.manager.TransactionManagerLookup;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.transaction.Transaction;
import javax.transaction.TransactionManager;
public class BasicJTATestServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
resp.setContentType("text/plain");
PrintWriter out = resp.getWriter();
try {
final TransactionManagerLookup lookup = new DefaultTransactionManagerLookup();
final TransactionManager txManager = lookup.getTransactionManager();
if(txManager == null) {
throw new AssertionError("txnManager is null, this test container test requires a txnManager");
}
System.out.println("txnManager class: " + txManager);
String cmd = req.getParameter("cmd");
debug("Doing command: " + cmd);
if ("insert".equals(cmd)) {
doInsert(txManager);
} else if ("query".equals(cmd)) {
doQuery(txManager);
} else {
out.println("Unknown command: " + cmd);
return;
}
} catch(Exception e) {
throw new IOException(e);
}
out.println("OK");
}
private void doInsert(TransactionManager txnManager) throws IllegalStateException, SecurityException {
CacheManager mgr = CacheManager.getInstance();
Cache cache = mgr.getCache("test");
try {
txnManager.begin();
cache.put(new Element("1", "one"));
Transaction tx1 = txnManager.suspend();
txnManager.begin();
cache.put(new Element("2", "two"));
txnManager.rollback();
txnManager.resume(tx1);
if (cache.get("2") != null && "two".equals(cache.get("2").getValue()))
cache.put(new Element("1-2", "one-two"));
txnManager.commit();
} catch(Exception e) {
throw new AssertionError(e);
}
}
private void doQuery(TransactionManager txnManager) {
CacheManager mgr = CacheManager.getInstance();
Cache cache = mgr.getCache("test");
//validate
try {
txnManager.begin();
Element elementOne = cache.get("1");
if(elementOne == null) {
throw new AssertionError("element one should exist!");
}
Element elementTwo = cache.get("2");
if(elementTwo != null) {
throw new AssertionError("element two shouldn't exist!");
}
Element elementOneTwo = cache.get("1-2");
if(elementOneTwo != null) {
throw new AssertionError("element one-two shouldn't exist!");
}
txnManager.commit();
} catch (Exception e) {
throw new AssertionError(e);
}
}
private void debug(String string) {
System.out.println(string);
}
}
|
[
"amaheshw@b9324663-ca0f-0410-8574-be9b3887307d"
] |
amaheshw@b9324663-ca0f-0410-8574-be9b3887307d
|
6c5421c31deeeaee032a6c1e57347a1b63b3b0ac
|
3bea23c6346dc02606bbc5cf0e58a8134101541c
|
/src/main/java/com/example/shiro/mapper/LoginMapper.java
|
fbb4aa60a94a87b6742d6d4ece58be204d49493a
|
[] |
no_license
|
wenshuo001/shiro
|
3594ac1abdbc4b927b9cfa70b073f7c2cb599688
|
0184df2a3cfac41f90cef8f3d75060dfaaa95d85
|
refs/heads/master
| 2022-03-01T17:27:31.975063 | 2019-07-26T09:32:03 | 2019-07-26T09:32:03 | 197,578,372 | 0 | 0 | null | 2022-02-09T22:16:09 | 2019-07-18T11:59:19 |
Java
|
UTF-8
|
Java
| false | false | 675 |
java
|
package com.example.shiro.mapper;
import com.example.shiro.bean.User;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import tk.mybatis.mapper.common.Mapper;
import java.util.List;
public interface LoginMapper extends Mapper<User> {
// /**
// * 根据品牌id查询商品分类
// * @param bid
// * @return
// */
// @Select("SELECT * FROM tb_category WHERE id IN (SELECT category_id FROM tb_category_brand WHERE brand_id = #{bid})")
// List<Category> queryByBrandId(Long bid);
@Select("SELECT * FROM USER WHERE USERNAME = #{userName}")
User findUserByName(@Param("userName") String userName);
}
|
[
"[email protected]"
] | |
626fe4430a1e4e7e1401b0892665ab10e7708a29
|
a3e8085c02131867502e4c4e31910eb2a276d370
|
/MessengerCSCI641/obj/Debug/android/src/messengercsci641/ChatActivity_MsgBroadcasrReceiver.java
|
2431286f2f5ba31d760c87b685e06c0768afe625
|
[] |
no_license
|
DlerAhmad/AndroidMessenger
|
6cab2e0edaf09d56349b36fe4a462657b9eae835
|
a6347d8d02bfc17c39fcaffbd857798c02fb3764
|
refs/heads/master
| 2020-06-06T14:44:09.279412 | 2015-09-01T23:20:00 | 2015-09-01T23:20:00 | 41,768,289 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,473 |
java
|
package messengercsci641;
public class ChatActivity_MsgBroadcasrReceiver
extends android.content.BroadcastReceiver
implements
mono.android.IGCUserPeer
{
static final String __md_methods;
static {
__md_methods =
"n_onReceive:(Landroid/content/Context;Landroid/content/Intent;)V:GetOnReceive_Landroid_content_Context_Landroid_content_Intent_Handler\n" +
"";
mono.android.Runtime.register ("MessengerCSCI641.ChatActivity/MsgBroadcasrReceiver, MessengerCSCI641, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ChatActivity_MsgBroadcasrReceiver.class, __md_methods);
}
public ChatActivity_MsgBroadcasrReceiver () throws java.lang.Throwable
{
super ();
if (getClass () == ChatActivity_MsgBroadcasrReceiver.class)
mono.android.TypeManager.Activate ("MessengerCSCI641.ChatActivity/MsgBroadcasrReceiver, MessengerCSCI641, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { });
}
public void onReceive (android.content.Context p0, android.content.Intent p1)
{
n_onReceive (p0, p1);
}
private native void n_onReceive (android.content.Context p0, android.content.Intent p1);
java.util.ArrayList refList;
public void monodroidAddReference (java.lang.Object obj)
{
if (refList == null)
refList = new java.util.ArrayList ();
refList.add (obj);
}
public void monodroidClearReferences ()
{
if (refList != null)
refList.clear ();
}
}
|
[
"[email protected]"
] | |
6dfc73dfbdf7ed7426533b13a6b7254813275758
|
8e9250a2280023abdda43929b75e645197934a46
|
/designpatternadapter/src/com/structural/internal/Department.java
|
16e8c67ff786c5f8add132d1803378031322dded
|
[] |
no_license
|
udhayaspringboot/dp
|
6732f2abb78eb7fc5a7a07f5ea783549f0394fb2
|
188aa91ef23877f1cd92e1216c078022f07dd38f
|
refs/heads/master
| 2022-12-30T22:50:36.327216 | 2020-09-23T19:57:13 | 2020-09-23T19:57:13 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 114 |
java
|
package com.structural.internal;
public interface Department {
public void deptName(String str)
;
}
|
[
"[email protected]"
] | |
e43ee2fc5153912fe020fe438e59931aa53308d3
|
1ee9c4fe14f108d1c57ac5bee23737cf55446df2
|
/java-se/java8/src/main/java/com/j8/lambda/LoopTest.java
|
30f92741dc173dbe8d47068592160ffe96ec8da6
|
[] |
no_license
|
xinxiamu/MuStudy
|
8c50c10b80f8454dcacf367b707faf7148e3ed30
|
928e95f6b1ee82bd957424132e75728ec1be64a4
|
refs/heads/master
| 2022-07-23T23:59:55.725214 | 2019-05-03T15:08:13 | 2019-05-03T15:08:13 | 87,512,690 | 0 | 4 | null | 2022-07-01T20:50:51 | 2017-04-07T06:28:59 |
JavaScript
|
UTF-8
|
Java
| false | false | 1,556 |
java
|
package com.j8.lambda;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* 测试数组遍历。
*
* @author Administrator
*
*/
public class LoopTest {
public static void main(String[] args) {
List<String> list = Arrays.asList("a", "b", "c", "d", "e", "f");
// 两种输出方式,各自优势并不明显
list.forEach(s -> print(s)); // lambda表达式,按顺序输出
System.out.println();
for (String string : list) {
System.out.print(string + ",");
}
// 用流输出
System.out.println();
list.stream().forEach(s -> print(s)); // 按顺序输出
System.out.println();
list.parallelStream().forEach(s -> print(s));// 不按顺序输出,并发的,提高遍历性能,在不要求顺序的场景中选用。
System.out.println();
//测试速度
// List<String> list2 = new ArrayList<>();
// for (int i = 0; i < 50000; i++) { //改为10万再测试,并发遍历反而慢
// list2.add("a" + i);
// }
// long a = System.currentTimeMillis();
// list2.forEach(s -> System.out.print(s));
// System.out.println();
// System.out.println("diff:" + (System.currentTimeMillis() - a));
//大数据量速度反而慢
// System.out.println();
// long b = System.currentTimeMillis();
// list2.parallelStream().forEach(s -> System.out.print(s));
// System.out.println();
// System.out.println("diff2:" + (System.currentTimeMillis() - b));
}
public static void print(String s) {
System.out.print(s + ",");
}
}
|
[
"[email protected]"
] | |
0b0a4499efe1ef883562110c9aaca6cb037e9aaa
|
1a90c145d4a71e4ee2316c3d34bfef6bc3f7e257
|
/src/main/java/com/web_dev_494/uGraduate/dao/CompletedDAOFunctionality.java
|
f532da27f9d7e976a5c08d580f6ace2ce2d5cba3
|
[] |
no_license
|
FayboCorp/uGraduate
|
994b6dc54e81e05461a1e6a1712e787ad5e9c00a
|
8ba2caf1d8737f068a776ad205216f127abf5a82
|
refs/heads/master
| 2022-11-30T09:43:29.333598 | 2020-08-14T17:52:13 | 2020-08-14T17:52:13 | 258,513,329 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,766 |
java
|
package com.web_dev_494.uGraduate.dao;
import com.web_dev_494.uGraduate.entity.CompletedSections;
import com.web_dev_494.uGraduate.entity.Section;
import com.web_dev_494.uGraduate.entity.Student;
import com.web_dev_494.uGraduate.service.SectionService;
import com.web_dev_494.uGraduate.service.StudentService;
import org.hibernate.Session;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import javax.persistence.EntityManager;
import javax.persistence.Query;
import java.util.List;
@Repository
public class CompletedDAOFunctionality implements CompletedDAO {
private EntityManager entityManager;
private StudentService studentService;
private SectionService sectionService;
@Autowired
public CompletedDAOFunctionality(EntityManager entityManager, StudentService studentService,
SectionService sectionService) {
this.entityManager = entityManager;
this.studentService = studentService;
this.sectionService = sectionService;
}
@Override
public List<CompletedSections> getClasses(int studentId) {
Session session = entityManager.unwrap(Session.class);
Query query = session.createQuery("SELECT s from CompletedSections s " +
"JOIN s.student stu " +
"WHERE stu.id=:id");
query.setParameter("id", studentId);
List<CompletedSections> sections = query.getResultList();
return sections;
}
@Override
public String getGrade(int crn, int studentId) {
Session session = entityManager.unwrap(Session.class);
Query query = session.createQuery("SELECT comSec from CompletedSections comSec " +
"JOIN comSec.student s " +
"JOIN comSec.section sec" +
" where s.id=:id AND sec.CRN =:crn");
query.setParameter("id", studentId);
query.setParameter("crn", crn);
List<CompletedSections> sections = query.getResultList();
if(sections.size() == 0){
return "I";
}
else if(sections.size() > 1){
return "More Than 1 Grade... See advisor";
}
else{
return sections.get(0).getGrade();
}
}
// TODO: Test this
@Override
public void completeClass(String grade, int studentId, int crn) {
Session currentSession = entityManager.unwrap(Session.class);
Section section = sectionService.findByCRN(crn);
Student student = studentService.findById(studentId);
CompletedSections completeSection = new CompletedSections(grade, student, section);
completeSection.setId(0);
currentSession.save(completeSection);
}
}
|
[
"[email protected]"
] | |
d788e84cff2cc89e7a9e7d8dffa0bc93a96dc707
|
c1b75e450665a32c13d830556d14541f549940ee
|
/service/src/main/java/com/base/service/services/UserService.java
|
4a01b46f7500f3ed8a1a0aebc713ebfa47120b22
|
[] |
no_license
|
zhougz9527/java-scaffold
|
0a5ab4bf1b88172a406b56d39e463fe2f8a156f9
|
988fc9486eb3c382526c16aaabcb5d273b26e356
|
refs/heads/master
| 2022-11-22T00:52:19.702901 | 2020-07-29T18:30:33 | 2020-07-29T18:30:33 | 283,422,407 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 631 |
java
|
package com.base.service.services;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.base.service.entity.User;
import java.util.List;
import java.util.Map;
public interface UserService {
// 单表查询
User singleTableQuery(String name);
// 单表分页查询
Page<User> singleTableQueryByPaging(Long classGradeId);
// 多表查询
List<Map<String, Object>> multiTableQuery(Long id);
// 多表分页查询
Page<Map<String, Object>> multiTableQueryByPaging(Long classGradeId);
// 获取redis中的用户的信息
User getUserInfoByRedis(String token);
}
|
[
"[email protected]"
] | |
d337bae22e307f544fc6994b7067e2a864db075e
|
676273590fd593da4961bfeeac23aa06966e2427
|
/app/src/test/java/com/stone/nestdemo/ExampleUnitTest.java
|
b73ed33aff919f9dfdd2dcd8d3633448f9511746
|
[] |
no_license
|
smaslenko/nest-api-demo
|
9729b082f9692f8f18139f79f7297e81119b94a2
|
ced55138c798928439b0885c8f037472406eaebe
|
refs/heads/master
| 2021-05-06T16:36:06.121520 | 2017-12-25T13:09:55 | 2017-12-25T13:09:55 | 113,780,113 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 396 |
java
|
package com.stone.nestdemo;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
|
[
"[email protected]"
] | |
a0174fcd9c8310470ffea2ffcc5b9a22ceef4ff6
|
bce89e2b1970c8d2119a6aa2e9f418d07f83b66f
|
/xbase-core/src/main/java/cr/ac/ucr/ecci/ci1312/xbase/core/log/service/LogEntryService.java
|
d089ee196bb32707ea7d18349978192c0ebf6bc2
|
[] |
no_license
|
JosueCuberoSanchez/xBase
|
b96f65e8b59bd6594fc1a3d48bce7852aa1c7ee9
|
502c490f1d7c1d57c64cb867956f1439adad885c
|
refs/heads/master
| 2021-07-24T02:35:27.329323 | 2017-11-03T15:15:09 | 2017-11-03T15:15:09 | 98,753,045 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 952 |
java
|
package cr.ac.ucr.ecci.ci1312.xbase.core.log.service;
import cr.ac.ucr.ecci.ci1312.xbase.model.AnswerLog;
import cr.ac.ucr.ecci.ci1312.xbase.model.ExerciseLog;
import cr.ac.ucr.ecci.ci1312.xbase.model.LogEntry;
import cr.ac.ucr.ecci.ci1312.xbase.model.ProcedureLog;
import cr.ac.ucr.ecci.ci1312.xbase.support.service.CrudService;
import java.util.List;
/**
* Universidad de Costa Rica
* Facultad de Ingenierías
* Escuela de Ciencias de la Computación e Informática
* Proyecto de Bases de Datos 1
* xBase
* Autores:
* Alemán Ramírez Esteban
* Borchgrevink Leiva Alexia
* Cubero Sánchez Josué
* Durán Gregory Ian
* Garita Centeno Alonso
* Hidalgo Campos Jose
* Mellado Xatruch Carlos
* Muñoz Miranda Roy
*
* Primer ciclo 2017
*/
public interface LogEntryService extends CrudService<LogEntry, String> {
List<ExerciseLog> getExerciseLogs();
List<ProcedureLog> getProcedureLogs();
List<AnswerLog> getAnswerLogs();
}
|
[
"[email protected]"
] | |
4cb7f2a927b769a0ce3663b68cc822ee89f55457
|
eac1623ac04e9cbfe5affd4314f1b1fa30c1e202
|
/base/src/main/java/app/zingo/employeemanagements/WebApi/MultpleAPI.java
|
98d2e74e8856efc9b9d4f9ca451e84a869af1a9f
|
[] |
no_license
|
ingeinfinite/EmployeeManagement
|
024bd892776b27e20b6c9ac202ab8a1be8e7da09
|
743c20aae6eef07d8ee10ee6f9011d1dced004c1
|
refs/heads/master
| 2022-01-18T07:28:19.183520 | 2019-08-05T05:21:49 | 2019-08-05T05:21:49 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,415 |
java
|
package app.zingo.employeemanagements.WebApi;
import java.util.ArrayList;
import app.zingo.employeemanagements.Model.Expenses;
import app.zingo.employeemanagements.Model.LiveTracking;
import app.zingo.employeemanagements.Model.LoginDetails;
import app.zingo.employeemanagements.Model.Meetings;
import app.zingo.employeemanagements.Model.Tasks;
import retrofit2.http.Body;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Path;
import rx.Observable;
public interface MultpleAPI {
@POST("LoginDetails/GetLoginDetailsByEmployeeIdAndLoginDate")
Observable<ArrayList<LoginDetails>> getLoginByEmployeeIdAndDate(@Body LoginDetails details);
@POST("LiveTrackingDetailsAsync/GetliveTrackingDetailsByEmployeeIdAndDate")
Observable<ArrayList<LiveTracking>> getLiveTrackingByEmployeeIdAndDate(@Body LiveTracking details);
@POST("Meetings/GetMeetingsDetailsByEmployeeIdAndLoginDate")
Observable<ArrayList<Meetings>> getMeetingsByEmployeeIdAndDate(@Body Meetings details);
@GET("Tasks/GetTasksByEmployeeId/{EmployeeId}")
Observable<ArrayList<Tasks>> getTasksByEmployeeId(@Path("EmployeeId") int EmployeeId);
@GET("Expenses/GetExpensesByOrganizationIdAndEmployeeId/{OrganizationId}/{EmployeeId}")
Observable<ArrayList<Expenses>> getExpenseByEmployeeIdAndOrganizationId(@Path("OrganizationId") int OrganizationId, @Path("EmployeeId") int EmployeeId);
}
|
[
"[email protected]"
] | |
952154080a15e4b1c5f34686cc288c90d47a45f7
|
625aa62c46e3cf953106bc03bacf4428f9710a70
|
/TestProject/test-web-consumer/src/main/java/com/ysc/controller/CommentController.java
|
2706e184fb45294682381dce62119441857784e5
|
[] |
no_license
|
yushicong/project
|
5d23ec9c299184ee5c5db16238fed63b6706aa20
|
5dcac5391640186d9f31b997c746f6cd9eec9e1f
|
refs/heads/master
| 2021-01-23T04:45:36.109918 | 2018-05-04T10:15:57 | 2018-05-04T10:15:57 | 102,451,126 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,161 |
java
|
package com.ysc.controller;
import com.ysc.model.Comment;
import com.ysc.service.CommentServiceInterface;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;
@Controller
@RequestMapping("CommentController")
public class CommentController {
@Autowired
private CommentServiceInterface service;
@RequestMapping("insertComment.do")
public void insertComment(Comment comment,HttpServletResponse response){
//根据传入的comment判断能否评论
List<Integer> flagList = service.canComment(comment);
int flag=0;
for(int i=0;i<flagList.size();++i){
if(flagList.get(i)==1){
flag=1;
break;
}
}
try {
PrintWriter out = response.getWriter();
if(flag==1){
//可以评论
//插入
service.insertCommet(comment);
out.println(1);
}
else{
out.println(0);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
|
[
"[email protected]"
] | |
5e77451f8279ca502b16167c8632c1675b044363
|
7f0a5800b57d47c4c1244e7075d06b915ca9a1ab
|
/lib_ext/bindings/java/jna/AtomicDateTimeRef.java
|
7e0854b9f014f92bf282ece17ef6cef73f7e19f6
|
[] |
no_license
|
peb-adr/TermSplit
|
b0a435f1c0972e8a993e10ab2de8a3945b875cca
|
8bc10467de82ba29f8ff1c64bb733de30de98a2b
|
refs/heads/master
| 2021-03-24T02:40:36.758485 | 2020-04-06T16:21:44 | 2020-04-06T16:21:44 | 247,507,775 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,429 |
java
|
package livesplitcore;
import com.sun.jna.*;
/**
* An Atomic Date Time represents a UTC Date Time that tries to be as close to
* an atomic clock as possible.
*/
public class AtomicDateTimeRef {
Pointer ptr;
/**
* Represents whether the date time is actually properly derived from an
* atomic clock. If the synchronization with the atomic clock didn't happen
* yet or failed, this is set to false.
*/
public boolean isSynchronized() {
if (this.ptr == Pointer.NULL) {
throw new RuntimeException();
}
boolean result = LiveSplitCoreNative.INSTANCE.AtomicDateTime_is_synchronized(this.ptr) != 0;
return result;
}
/**
* Converts this atomic date time into a RFC 2822 formatted date time.
*/
public String toRfc2822() {
if (this.ptr == Pointer.NULL) {
throw new RuntimeException();
}
String result = LiveSplitCoreNative.INSTANCE.AtomicDateTime_to_rfc2822(this.ptr);
return result;
}
/**
* Converts this atomic date time into a RFC 3339 formatted date time.
*/
public String toRfc3339() {
if (this.ptr == Pointer.NULL) {
throw new RuntimeException();
}
String result = LiveSplitCoreNative.INSTANCE.AtomicDateTime_to_rfc3339(this.ptr);
return result;
}
AtomicDateTimeRef(Pointer ptr) {
this.ptr = ptr;
}
}
|
[
"[email protected]"
] | |
f0d960829b7fd0bf97238768349ec98542ac447c
|
ac2aa923dff8d61eb31e1e59cf5d60e4681a236d
|
/lynch-cms-common/src/main/java/com/lynch/cms/common/xml/JaxbDemo.java
|
cd5f3035e49cc3f63648a2b86ace662cbc6aad18
|
[] |
no_license
|
iqeq00/lynch-cms
|
4926e1d2c457bf2d7cb60380bf4d8586d388c7a8
|
b108fa75ba1953e01c9b1784081d5c28ec0b0f40
|
refs/heads/master
| 2016-09-07T18:36:15.681053 | 2012-07-29T09:27:52 | 2012-07-29T09:27:52 | 4,556,587 | 5 | 0 | null | 2012-07-29T09:24:12 | 2012-06-05T06:31:41 |
JavaScript
|
UTF-8
|
Java
| false | false | 4,347 |
java
|
package com.lynch.cms.common.xml;
import static org.junit.Assert.*;
import java.util.List;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.junit.BeforeClass;
import org.junit.Test;
import com.google.common.collect.Lists;
import com.lynch.cms.core.mapper.JaxbMapper;
import com.lynch.cms.core.mapper.JaxbMapper.CollectionWrapper;
/**
* 演示基于JAXB2.0的Java对象-XML转换及Dom4j的使用.
*
* @author calvin
*
* 演示用xml如下:
*
* <?xml version="1.0" encoding="UTF-8"?>
* <user id="1">
* <name>calvin</name>
* <roles>
* <role id="1" name="admin"/>
* <role id="2" name="user"/>
* </roles>
* <interests>
* <interest>movie</interest>
* <interest>sports</interest>
* </interests>
* <houses>
* <house key="bj">house1</item>
* <hosue key="gz">house2</item>
* </houses>
* </user>
*/
public class JaxbDemo {
private static JaxbMapper mapper;
@BeforeClass
public static void setUp() {
mapper = new JaxbMapper(User.class, CollectionWrapper.class);
}
@Test
public void objectToXml() {
User user = new User();
user.setId(1L);
user.setName("calvin");
user.getRoles().add(new Role(1L, "admin"));
user.getRoles().add(new Role(2L, "user"));
user.getInterests().add("movie");
user.getInterests().add("sports");
user.getHouses().put("bj", "house1");
user.getHouses().put("gz", "house2");
String xml = mapper.toXml(user, "UTF-8");
System.out.println("Jaxb Object to Xml result:\n" + xml);
assertXmlByDom4j(xml);
}
@Test
public void xmlToObject() {
String xml = generateXmlByDom4j();
User user = mapper.fromXml(xml);
System.out.println("Jaxb Xml to Object result:\n" + user);
assertEquals(Long.valueOf(1L), user.getId());
assertEquals(2, user.getRoles().size());
assertEquals("admin", user.getRoles().get(0).getName());
assertEquals(2, user.getInterests().size());
assertEquals("movie", user.getInterests().get(0));
assertEquals(2, user.getHouses().size());
assertEquals("house1", user.getHouses().get("bj"));
}
/**
* 测试以List对象作为根节点时的XML输出
*/
@Test
public void toXmlWithListAsRoot() {
User user1 = new User();
user1.setId(1L);
user1.setName("calvin");
User user2 = new User();
user2.setId(2L);
user2.setName("kate");
List<User> userList = Lists.newArrayList(user1, user2);
String xml = mapper.toXml(userList, "userList", "UTF-8");
System.out.println("Jaxb Object List to Xml result:\n" + xml);
}
/**
* 使用Dom4j生成测试用的XML文档字符串.
*/
private static String generateXmlByDom4j() {
Document document = DocumentHelper.createDocument();
Element root = document.addElement("user").addAttribute("id", "1");
root.addElement("name").setText("calvin");
//List<Role>
Element roles = root.addElement("roles");
roles.addElement("role").addAttribute("id", "1").addAttribute("name", "admin");
roles.addElement("role").addAttribute("id", "2").addAttribute("name", "user");
//List<String>
Element interests = root.addElement("interests");
interests.addElement("interest").addText("movie");
interests.addElement("interest").addText("sports");
//Map<String,String>
Element houses = root.addElement("houses");
houses.addElement("house").addAttribute("key", "bj").addText("house1");
houses.addElement("house").addAttribute("key", "gz").addText("house2");
return document.asXML();
}
/**
* 使用Dom4j验证Jaxb所生成XML的正确性.
*/
private static void assertXmlByDom4j(String xml) {
Document doc = null;
try {
doc = DocumentHelper.parseText(xml);
} catch (DocumentException e) {
fail(e.getMessage());
}
Element user = doc.getRootElement();
assertEquals("1", user.attribute("id").getValue());
Element adminRole = (Element) doc.selectSingleNode("//roles/role[@id=1]");
assertEquals(2, adminRole.getParent().elements().size());
assertEquals("admin", adminRole.attribute("name").getValue());
Element interests = (Element) doc.selectSingleNode("//interests");
assertEquals(2, interests.elements().size());
assertEquals("movie", ((Element) interests.elements().get(0)).getText());
Element house1 = (Element) doc.selectSingleNode("//houses/house[@key='bj']");
assertEquals("house1", house1.getText());
}
}
|
[
"[email protected]"
] | |
daa0096814f2bdbc9387151c13c9f8838e2c3a55
|
dcd1c00bf03db6edd3e19e0cea95e7a7aad19c68
|
/text.java
|
693d5ec470d8ae4e96c3d0ec722cff1c72be652a
|
[] |
no_license
|
Tamas-Leung/ResumeWebsite
|
3ff4f7427a36293b0e31c9cf9bc5d42e5aef575b
|
363a46bd52a92d77443089f9fe7390a9908de04e
|
refs/heads/master
| 2020-12-06T09:59:10.205836 | 2020-01-16T04:32:58 | 2020-01-16T04:32:58 | 232,430,467 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 386 |
java
|
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
//get input
int size = 3;
int maxAmountOfThrees = size/3;
System.out.print(maxAmountOfThrees);
}
}
|
[
"[email protected]"
] | |
ad17ba4d00dfe08db7d998c440ac181fc92cc83f
|
d7aef84f383428845e4864c5e0057269dc766ad3
|
/src/main/java/com/whj/usercenter/service/WeiboService.java
|
7df76bdc52ae66108f2276e64b07f1c44be1d178
|
[] |
no_license
|
WHJ1928/user-center
|
e2294360df63c9632f2b0ef48e5b61e0e300595f
|
2ae8528054f79a2c7be075c4d596cdf000e4a8fa
|
refs/heads/master
| 2020-03-21T20:37:24.037637 | 2018-09-18T07:44:23 | 2018-09-18T07:44:23 | 139,018,610 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 535 |
java
|
package com.whj.usercenter.service;
import com.alibaba.fastjson.JSONObject;
import com.whj.usercenter.dto.BaseResDto;
import com.whj.usercenter.dto.request.QueryAllReqDto;
import com.whj.usercenter.dto.request.QueryBciRepDto;
/**
* @author wanghaijun
* @date 2018/8/1
* @desc
*/
public interface WeiboService {
/**
* 查询全部信息
* @return
*/
BaseResDto<JSONObject> queryAllInfo(QueryAllReqDto reqDto);
/**
* 查询bci
*/
BaseResDto<JSONObject> queryBci(QueryBciRepDto repDto);
}
|
[
"[email protected]"
] | |
e2c80525da8ab1da9687a1fe7c14c49c5901aecb
|
024100dbc3f6f5744612a0cdf5409e5ce4d8dad3
|
/gen/lan/wifianalyzer/R.java
|
75c1e2ccec7731c9632f69697faca44bb907a1d2
|
[] |
no_license
|
osinstom/WifiAnalyzer
|
08503caab769374014f02004767d02cd5fa45a63
|
49c3350fc61a0861fa37db8ffb27bf8235155734
|
refs/heads/master
| 2021-01-10T05:22:12.401275 | 2016-01-07T09:12:50 | 2016-01-07T09:12:50 | 48,516,188 | 0 | 2 | null | null | null | null |
UTF-8
|
Java
| false | false | 421,292 |
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 lan.wifianalyzer;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_grow_fade_in_from_bottom=0x7f040002;
public static final int abc_popup_enter=0x7f040003;
public static final int abc_popup_exit=0x7f040004;
public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
public static final int abc_slide_in_bottom=0x7f040006;
public static final int abc_slide_in_top=0x7f040007;
public static final int abc_slide_out_bottom=0x7f040008;
public static final int abc_slide_out_top=0x7f040009;
}
public static final class attr {
/** Custom divider drawable to use for elements in the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010018;
/** Custom item state list drawable background for action bar items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010019;
/** Reference to a theme that should be used to inflate popups
shown by widgets in the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010012;
/** Size of the Action Bar, including the contextual
bar used to present Action Modes.
<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=0x7f010017;
/** Reference to a style for the split Action Bar. This style
controls the split component that holds the menu/action
buttons. actionBarStyle is still used for the primary
bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010014;
/** Reference to a style for the Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarTabBarStyle=0x7f01000e;
/** Default style for tabs within an action bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f01000f;
/** Reference to a theme that should be used to inflate the
action bar. This will be inherited by any widget inflated
into the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010015;
/** Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010016;
/** Default action button style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010032;
/** Default ActionBar dropdown style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002e;
/** An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008f;
/** TextAppearance style that will be applied to text that
appears within action menu items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001a;
/** Color for text that appears within action menu items.
Color for text that appears within action menu items.
<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=0x7f01001b;
/** Background drawable to use for action mode UI
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001d;
/** Drawable to use for the close action mode button
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010020;
/** Drawable to use for the Copy action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010022;
/** Drawable to use for the Cut action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010021;
/** Drawable to use for the Find action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010026;
/** Drawable to use for the Paste action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010023;
/** PopupWindow style to use for action modes when showing as a window overlay.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010028;
/** Drawable to use for the Select all action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010024;
/** Drawable to use for the Share action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010025;
/** Background drawable to use for action mode UI in the lower split bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionModeStyle=0x7f01001c;
/** Drawable to use for the Web Search action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionOverflowButtonStyle=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 actionOverflowMenuStyle=0x7f010011;
/** The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
for more info.
<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=0x7f010091;
/** The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<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=0x7f010090;
/** Default ActivityChooserView style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 alertDialogButtonGroupStyle=0x7f01005d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f01005c;
/** Theme to use for alert dialogs spawned from this theme.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005f;
/** Whether to automatically stack the buttons when there is not
enough space to lay them out side-by-side.
<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=0x7f0100cd;
/** The length of the arrow head when formed to make an arrow
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ba;
/** The length of the shaft when formed to make an arrow
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100bb;
/** Default AutoCompleteTextView style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010064;
/** Specifies a background drawable for the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010077;
/** Specifies a background drawable for the bottom component of a split action bar.
<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=0x7f010079;
/** Specifies a background drawable for a second stacked row of the action bar.
<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=0x7f010078;
/** Tint to apply to the background.
<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=0x7f01008b;
/** Blending mode used to apply the background tint.
<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> The tint is drawn on top of the drawable.
[Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr>
<tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s
color channels are thrown out. [Sa * Da, Sc * Da] </td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha
channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr>
<tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of
the tint. [Sa * Da, Sc * Dc] </td></tr>
<tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f01008c;
/** The length of the bars when they are parallel to each other
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100bc;
/** Style for buttons without an explicit border, often used in groups.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010037;
/** Style for buttons within button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010034;
/** Style for the "negative" buttons within button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010062;
/** Style for the "neutral" buttons within button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010063;
/** Style for the "positive" buttons within button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010061;
/** Style for button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 buttonPanelSideLayout=0x7f0100c8;
/** Normal Button style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010065;
/** Small Button style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010066;
/** Tint to apply to the button drawable.
<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=0x7f0100bf;
/** Blending mode used to apply the button tint.
<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> The tint is drawn on top of the drawable.
[Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr>
<tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s
color channels are thrown out. [Sa * Da, Sc * Da] </td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha
channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr>
<tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of
the tint. [Sa * Da, Sc * Dc] </td></tr>
<tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr>
</table>
*/
public static final int buttonTintMode=0x7f0100c0;
/** Default Checkbox style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010067;
/** Default CheckedTextView style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010068;
/** Close button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010096;
/** Specifies a layout to use for the "close" item at the starting edge.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010087;
/** Text to set as the content description for the collapse button.
<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=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 collapseIcon=0x7f0100ad;
/** The drawing color for the bars
<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=0x7f0100b6;
/** Bright complement to the primary branding color. By default, this is the color applied
to framework controls (via colorControlActivated).
<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=0x7f010055;
/** The color applied to framework buttons in their normal state.
<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=0x7f010059;
/** The color applied to framework controls in their activated (ex. checked) state.
<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=0x7f010057;
/** The color applied to framework control highlights (ex. ripples, list selectors).
<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=0x7f010058;
/** The color applied to framework controls in their normal state.
<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=0x7f010056;
/** The primary branding color for the app. By default, this is the color applied to the
action bar background.
<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=0x7f010053;
/** Dark variant of the primary branding color. By default, this is the color applied to
the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
<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=0x7f010054;
/** The color applied to framework switch thumbs in their normal state.
<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=0x7f01005a;
/** Commit icon shown in the query suggestion row
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009b;
/** Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010082;
/** Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010083;
/** Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010084;
/** Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010081;
/** The background used by framework controls.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005b;
/** Specifies a layout for custom navigation. Overrides navigationMode.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007a;
/** Default query hint used when {@code queryHint} is undefined and
the search view's {@code SearchableInfo} does not provide a hint.
<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=0x7f010095;
/** Preferred padding for dialog content.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01002c;
/** Theme to use for dialogs spawned from this theme.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002b;
/** Options affecting how the action bar is displayed.
<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=0x7f010070;
/** Specifies the drawable used for item dividers.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010076;
/** A drawable that may be used as a horizontal divider between visual elements.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010039;
/** Size of padding on either end of a divider.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100a4;
/** A drawable that may be used as a vertical divider between visual elements.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010038;
/** The total size of the drawable
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f0100be;
/** ListPopupWindow compatibility
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004b;
/** The preferred item height for dropdown lists.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01002f;
/** EditText background drawable.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010040;
/** EditText text foreground color.
<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=0x7f01003f;
/** Default EditText style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010069;
/** Elevation for the action bar itself
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010085;
/** The drawable to show in the button for expanding the activities overflow popup.
<strong>Note:</strong> Clients would like to set this drawable
as a clue about the action the chosen activity will perform. For
example, if share activity is to be chosen the drawable should
give a clue that sharing is to be performed.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a0;
/** The max gap between the bars when they are parallel to each other
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100b9;
/** Go button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010097;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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;
/** Set true to hide the action bar on a vertical nested scroll of content.
<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=0x7f010080;
/** Specifies a drawable to use for the 'home as up' indicator.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010031;
/** Specifies a layout to use for the "home" section of the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007b;
/** Specifies the drawable used for the application icon.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010074;
/** The default state of the SearchView. If true, it will be iconified when not in
use and expanded when clicked.
<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=0x7f010093;
/** ImageButton background drawable.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010041;
/** Specifies a style resource to use for an indeterminate progress spinner.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007d;
/** The maximal number of items initially shown in the activity list.
<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=0x7f01009f;
/** Specifies whether the theme is light, otherwise it is dark.
<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;
/** Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01007f;
/** The layout to use for the search view.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010092;
/** Drawable used as a background for selected list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010052;
/** The list divider used in alert dialogs.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 listItemLayout=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 listLayout=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 listPopupWindowStyle=0x7f01004c;
/** The preferred list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010046;
/** A larger, more robust list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010048;
/** A smaller, sleeker list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010047;
/** The preferred padding along the left edge of list items.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010049;
/** The preferred padding along the right edge of list items.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01004a;
/** Specifies the drawable used for the application logo.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010075;
/** A content description string to describe the appearance of the
associated logo image.
<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=0x7f0100b1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ac;
/** When set to true, all children with a weight will be considered having
the minimum size of the largest child. If false, all children are
measured normally.
<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=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 multiChoiceItemLayout=0x7f0100ca;
/** Text to set as the content description for the navigation button
located at the start of the toolbar.
<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=0x7f0100b0;
/** Icon drawable to use for the navigation button located at
the start of the toolbar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100af;
/** The type of navigation to use.
<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> Normal static title text </td></tr>
<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
</table>
*/
public static final int navigationMode=0x7f01006f;
/** Whether the popup window should overlap its anchor view.
<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=0x7f0100b5;
/** Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010089;
/** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010088;
/** The background of a panel when it is inset from the left and right edges of the screen.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004f;
/** Default Panel Menu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010051;
/** Default Panel Menu width.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010050;
/** Default PopupMenu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003d;
/** Reference to a theme that should be used to inflate popups
shown by widgets in the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010086;
/** Default PopupWindow style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003e;
/** Whether space should be reserved in layout when an icon is missing.
<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=0x7f01008d;
/** Specifies the horizontal padding on either end for an embedded progress bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01007e;
/** Specifies a style resource to use for an embedded progress bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007c;
/** Background for the section containing the search query
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009d;
/** An optional user-defined query hint string to be displayed in the empty query field.
<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=0x7f010094;
/** Default RadioButton style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006a;
/** Default RatingBar style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006b;
/** Search icon displayed as a text field hint
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010099;
/** Search icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010098;
/** Style for the search query widget.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010045;
/** Default SeekBar style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006c;
/** A style that may be applied to buttons or other selectable items
that should react to pressed and focus states, but that do not
have a clear visual border along the edges.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010035;
/** Background drawable for borderless standalone items that need focus/pressed states.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010036;
/** How this item should display in the Action Bar, if present.
<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> Never show this item in an action bar, show it in the overflow menu instead.
Mutually exclusive with "ifRoom" and "always". </td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
by the system. Favor this option over "always" where possible.
Mutually exclusive with "never" and "always". </td></tr>
<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
the system's limits of how much stuff to put there. This may make
your action bar look bad on some screens. In most cases you should
use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
label with it even if it has an icon representation. </td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
item. When expanded, the action view takes over a
larger segment of its container. </td></tr>
</table>
*/
public static final int showAsAction=0x7f01008e;
/** Setting for which dividers to show.
<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=0x7f0100a3;
/** Whether to draw on/off text.
<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=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 singleChoiceItemLayout=0x7f0100cb;
/** Whether bars should rotate or not during transition
<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=0x7f0100b7;
/** Default Spinner style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010030;
/** Default Spinner style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006d;
/** Whether to split the track and leave a gap for the thumb drawable.
<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=0x7f0100c6;
/** State identifier indicating the popup will be above the anchor.
<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=0x7f0100b4;
/** Background for the section containing the action (e.g. voice search)
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009e;
/** Specifies subtitle text used for navigationMode="normal"
<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=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 subtitleTextAppearance=0x7f0100a6;
/** A color to apply to the subtitle string.
<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=0x7f0100b3;
/** Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010073;
/** Layout for query suggestion rows
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009c;
/** Minimum width for the switch component
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100c4;
/** Minimum space between the switch and caption text
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100c5;
/** Default style for the Switch widget.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006e;
/** TextAppearance style for text displayed on the switch thumb.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100c3;
/** Present the text in ALL CAPS. This may use a small-caps form when available.
<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=0x7f0100a1;
/** Text color, typeface, size, and style for the text inside of a popup menu.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010029;
/** The preferred TextAppearance for the primary text of list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004d;
/** The preferred TextAppearance for the primary text of small list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004e;
/** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010043;
/** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010042;
/** Text color, typeface, size, and style for small text inside of a popup menu.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002a;
/** Color of list item text in alert dialogs.
<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=0x7f010060;
/** Text color for urls in search suggestions, used by things like global search
<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=0x7f010044;
/** Deprecated.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008a;
/** The thickness (stroke size) for the bar paint
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100bd;
/** Amount of padding on either side of text within the switch thumb.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100c2;
/** <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=0x7f010000;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ab;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100a9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100a8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100aa;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0100a5;
/** A color to apply to the title string.
<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=0x7f0100b2;
/** Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010072;
/** Default Toolar NavigationButtonStyle
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003c;
/** Default Toolbar style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003b;
/** Drawable to use as the "track" that the switch thumb slides within.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100c1;
/** Voice button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009a;
/** Flag indicating whether this window should have an Action Bar
in place of the usual title bar.
<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=0x7f010003;
/** Flag indicating whether this window's Action Bar should overlay
application content. Does nothing if the window would not
have an Action Bar.
<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=0x7f010005;
/** Flag indicating whether action modes should overlay window content
when there is not reserved space for their UI (such as an Action Bar).
<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=0x7f010006;
/** A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f01000a;
/** A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010008;
/** A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010007;
/** A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010009;
/** The minimum width the window is allowed to be, along the major
axis of the screen. That is, when in landscape. Can be either
an absolute dimension or a fraction of the screen size in that
dimension.
<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=0x7f01000b;
/** The minimum width the window is allowed to be, along the minor
axis of the screen. That is, when in portrait. Can be either
an absolute dimension or a fraction of the screen size in that
dimension.
<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=0x7f01000c;
/** Flag indicating whether there should be no title on this window.
<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=0x7f010004;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f050000;
public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050001;
public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050002;
/** Whether to allow vertically stacked button bars. This is disabled for
configurations with a small (e.g. less than 320dp) screen height.
*/
public static final int abc_allow_stacked_button_bar=0x7f050004;
/** Whether action menu items should be displayed in ALLCAPS or not.
Defaults to true. If this is not appropriate for specific locales
it should be disabled in that locale's resources.
*/
public static final int abc_config_actionMenuItemAllCaps=0x7f050006;
/** Whether action menu items should obey the "withText" showAsAction
flag. This may be set to false for situations where space is
extremely limited.
Whether action menu items should obey the "withText" showAsAction.
This may be set to false for situations where space is
extremely limited.
*/
public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050005;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f050007;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050003;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f06003a;
public static final int abc_background_cache_hint_selector_material_light=0x7f06003b;
public static final int abc_color_highlight_material=0x7f06003c;
public static final int abc_input_method_navigation_guard=0x7f060003;
public static final int abc_primary_text_disable_only_material_dark=0x7f06003d;
public static final int abc_primary_text_disable_only_material_light=0x7f06003e;
public static final int abc_primary_text_material_dark=0x7f06003f;
public static final int abc_primary_text_material_light=0x7f060040;
public static final int abc_search_url_text=0x7f060041;
public static final int abc_search_url_text_normal=0x7f060000;
public static final int abc_search_url_text_pressed=0x7f060002;
public static final int abc_search_url_text_selected=0x7f060001;
public static final int abc_secondary_text_material_dark=0x7f060042;
public static final int abc_secondary_text_material_light=0x7f060043;
public static final int accent_material_dark=0x7f060011;
public static final int accent_material_light=0x7f060010;
public static final int background_floating_material_dark=0x7f060008;
public static final int background_floating_material_light=0x7f060009;
public static final int background_material_dark=0x7f060006;
public static final int background_material_light=0x7f060007;
/** White 50%
*/
public static final int bright_foreground_disabled_material_dark=0x7f06001a;
/** Black 50%
*/
public static final int bright_foreground_disabled_material_light=0x7f06001b;
public static final int bright_foreground_inverse_material_dark=0x7f06001c;
public static final int bright_foreground_inverse_material_light=0x7f06001d;
public static final int bright_foreground_material_dark=0x7f060018;
public static final int bright_foreground_material_light=0x7f060019;
public static final int button_material_dark=0x7f060012;
public static final int button_material_light=0x7f060013;
public static final int dim_foreground_disabled_material_dark=0x7f060020;
public static final int dim_foreground_disabled_material_light=0x7f060021;
public static final int dim_foreground_material_dark=0x7f06001e;
public static final int dim_foreground_material_light=0x7f06001f;
public static final int foreground_material_dark=0x7f060004;
public static final int foreground_material_light=0x7f060005;
/** TODO: This is 40% alpha on the default accent color.
*/
public static final int highlighted_text_material_dark=0x7f060024;
/** TODO: This is 40% alpha on the default accent color.
*/
public static final int highlighted_text_material_light=0x7f060025;
public static final int hint_foreground_material_dark=0x7f060022;
public static final int hint_foreground_material_light=0x7f060023;
public static final int material_blue_grey_800=0x7f060037;
public static final int material_blue_grey_900=0x7f060038;
public static final int material_blue_grey_950=0x7f060039;
public static final int material_deep_teal_200=0x7f060035;
public static final int material_deep_teal_500=0x7f060036;
public static final int material_grey_100=0x7f060033;
public static final int material_grey_300=0x7f060032;
public static final int material_grey_50=0x7f060034;
public static final int material_grey_600=0x7f060031;
public static final int material_grey_800=0x7f060030;
public static final int material_grey_850=0x7f06002f;
public static final int material_grey_900=0x7f06002e;
public static final int primary_dark_material_dark=0x7f06000c;
public static final int primary_dark_material_light=0x7f06000d;
public static final int primary_material_dark=0x7f06000a;
public static final int primary_material_light=0x7f06000b;
/** 100% white
*/
public static final int primary_text_default_material_dark=0x7f060028;
/** 87% black
*/
public static final int primary_text_default_material_light=0x7f060026;
/** 30% of default values
*/
public static final int primary_text_disabled_material_dark=0x7f06002c;
/** 26% of default values
*/
public static final int primary_text_disabled_material_light=0x7f06002a;
/** 20% white (foreground)
*/
public static final int ripple_material_dark=0x7f06000e;
/** 12% black (foreground)
*/
public static final int ripple_material_light=0x7f06000f;
/** 70% white
*/
public static final int secondary_text_default_material_dark=0x7f060029;
/** 54% black
*/
public static final int secondary_text_default_material_light=0x7f060027;
public static final int secondary_text_disabled_material_dark=0x7f06002d;
public static final int secondary_text_disabled_material_light=0x7f06002b;
public static final int switch_thumb_disabled_material_dark=0x7f060016;
public static final int switch_thumb_disabled_material_light=0x7f060017;
public static final int switch_thumb_material_dark=0x7f060044;
public static final int switch_thumb_material_light=0x7f060045;
public static final int switch_thumb_normal_material_dark=0x7f060014;
public static final int switch_thumb_normal_material_light=0x7f060015;
}
public static final class dimen {
/** Default content inset of an action bar.
Default content inset of an action bar.
*/
public static final int abc_action_bar_content_inset_material=0x7f07002b;
/** Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
*/
public static final int abc_action_bar_default_height_material=0x7f07002a;
/** Default end padding of an action bar.
Default end padding of an action bar.
*/
public static final int abc_action_bar_default_padding_end_material=0x7f07002d;
/** Default start padding of an action bar.
Default start padding of an action bar.
*/
public static final int abc_action_bar_default_padding_start_material=0x7f07002c;
/** Vertical padding around action bar icons.
*/
public static final int abc_action_bar_icon_vertical_padding_material=0x7f07002e;
/** Padding to add to the end of the overflow action button.
*/
public static final int abc_action_bar_overflow_padding_end_material=0x7f070033;
/** Padding to add to the start of the overflow action button.
*/
public static final int abc_action_bar_overflow_padding_start_material=0x7f070032;
/** Size of the indeterminate Progress Bar
Size of the indeterminate Progress Bar
*/
public static final int abc_action_bar_progress_bar_size=0x7f070008;
/** Maximum height for a stacked tab bar as part of an action bar
*/
public static final int abc_action_bar_stacked_max_height=0x7f070007;
/** Maximum width for a stacked action bar tab. This prevents
action bar tabs from becoming too wide on a wide screen when only
a few are present.
*/
public static final int abc_action_bar_stacked_tab_max_width=0x7f070006;
/** Bottom margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070030;
/** Top margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_top_margin_material=0x7f07002f;
public static final int abc_action_button_min_height_material=0x7f070036;
public static final int abc_action_button_min_width_material=0x7f070035;
public static final int abc_action_button_min_width_overflow_material=0x7f070034;
/** Dialog button bar height
Dialog button bar height
*/
public static final int abc_alert_dialog_button_bar_height=0x7f070020;
public static final int abc_button_inset_horizontal_material=0x7f070014;
public static final int abc_button_inset_vertical_material=0x7f070013;
public static final int abc_button_padding_horizontal_material=0x7f070016;
/** Default inner padding within buttons
*/
public static final int abc_button_padding_vertical_material=0x7f070015;
/** The maximum width we would prefer dialogs to be. 0 if there is no
maximum (let them grow as large as the screen). Actual values are
specified for -large and -xlarge configurations.
see comment in values/config.xml
see comment in values/config.xml
*/
public static final int abc_config_prefDialogWidth=0x7f070005;
/** Default rounded corner for controls
*/
public static final int abc_control_corner_material=0x7f070019;
/** Default insets (outer padding) around controls
*/
public static final int abc_control_inset_material=0x7f070017;
/** Default inner padding within controls
*/
public static final int abc_control_padding_material=0x7f070018;
/** The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int abc_dialog_fixed_height_major=0x7f070011;
/** The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int abc_dialog_fixed_height_minor=0x7f070012;
/** The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int abc_dialog_fixed_width_major=0x7f07000f;
/** The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int abc_dialog_fixed_width_minor=0x7f070010;
/** Padding above and below selection dialog lists.
*/
public static final int abc_dialog_list_padding_vertical_material=0x7f070021;
/** The platform's desired minimum size for a dialog's width when it
is along the major axis (that is the screen is landscape). This may
be either a fraction or a dimension.
*/
public static final int abc_dialog_min_width_major=0x7f070023;
/** The platform's desired minimum size for a dialog's width when it
is along the minor axis (that is the screen is portrait). This may
be either a fraction or a dimension.
*/
public static final int abc_dialog_min_width_minor=0x7f070024;
public static final int abc_dialog_padding_material=0x7f07001e;
public static final int abc_dialog_padding_top_material=0x7f07001f;
public static final int abc_disabled_alpha_material_dark=0x7f070048;
public static final int abc_disabled_alpha_material_light=0x7f070047;
/** Width of the icon in a dropdown list
*/
public static final int abc_dropdownitem_icon_width=0x7f07000e;
/** Text padding for dropdown items
*/
public static final int abc_dropdownitem_text_padding_left=0x7f07000c;
public static final int abc_dropdownitem_text_padding_right=0x7f07000d;
public static final int abc_edit_text_inset_bottom_material=0x7f07001c;
public static final int abc_edit_text_inset_horizontal_material=0x7f07001a;
public static final int abc_edit_text_inset_top_material=0x7f07001b;
public static final int abc_floating_window_z=0x7f070046;
/** Default padding for list items. This should match the action bar
content inset so that ListActivity items line up correctly.
*/
public static final int abc_list_item_padding_horizontal_material=0x7f070031;
public static final int abc_panel_menu_list_width=0x7f070009;
/** Preferred width of the search view.
*/
public static final int abc_search_view_preferred_width=0x7f07000b;
/** Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
*/
public static final int abc_search_view_text_min_width=0x7f07000a;
public static final int abc_seekbar_track_background_height_material=0x7f070049;
public static final int abc_seekbar_track_progress_height_material=0x7f07004a;
/** Dialog padding minus control padding, used to fix alignment.
*/
public static final int abc_select_dialog_padding_start_material=0x7f070022;
/** Since optical insets are not available pre-v18, we add a small amount of padding
Since SwitchCompat can use optical insets on v18+, reset the manual padding
*/
public static final int abc_switch_padding=0x7f07001d;
public static final int abc_text_size_body_1_material=0x7f070040;
public static final int abc_text_size_body_2_material=0x7f07003f;
public static final int abc_text_size_button_material=0x7f070042;
public static final int abc_text_size_caption_material=0x7f070041;
public static final int abc_text_size_display_1_material=0x7f07003a;
public static final int abc_text_size_display_2_material=0x7f070039;
public static final int abc_text_size_display_3_material=0x7f070038;
public static final int abc_text_size_display_4_material=0x7f070037;
public static final int abc_text_size_headline_material=0x7f07003b;
public static final int abc_text_size_large_material=0x7f070043;
public static final int abc_text_size_medium_material=0x7f070044;
public static final int abc_text_size_menu_material=0x7f07003e;
public static final int abc_text_size_small_material=0x7f070045;
public static final int abc_text_size_subhead_material=0x7f07003d;
/** Use the default subtitle sizes on tablets.
Default text size for action bar subtitle.
*/
public static final int abc_text_size_subtitle_material_toolbar=0x7f070029;
public static final int abc_text_size_title_material=0x7f07003c;
/** Use the default title sizes on tablets.
Default text size for action bar title.
*/
public static final int abc_text_size_title_material_toolbar=0x7f070028;
/** Default screen margins, per the Android Design guidelines.
Example customization of dimensions originally defined in res/values/dimens.xml
(such as screen margins) for screens with more than 820dp of available width. This
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively).
*/
public static final int activity_horizontal_margin=0x7f07004b;
public static final int activity_vertical_margin=0x7f07004c;
public static final int disabled_alpha_material_dark=0x7f070001;
public static final int disabled_alpha_material_light=0x7f070000;
public static final int highlight_alpha_material_colored=0x7f070004;
public static final int highlight_alpha_material_dark=0x7f070003;
public static final int highlight_alpha_material_light=0x7f070002;
/** The width of the big icons in notifications.
*/
public static final int notification_large_icon_height=0x7f070026;
/** The width of the big icons in notifications.
*/
public static final int notification_large_icon_width=0x7f070025;
/** Size of smaller notification text (see TextAppearance.StatusBar.EventContent.Line2, Info,
Time)
*/
public static final int notification_subtext_size=0x7f070027;
}
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 accept_icon=0x7f020045;
public static final int background=0x7f020046;
public static final int button=0x7f020047;
public static final int cyclic_icon=0x7f020048;
public static final int ic_launcher=0x7f020049;
public static final int measure_icon=0x7f02004a;
public static final int notification_template_icon_bg=0x7f020052;
public static final int orange_background=0x7f02004b;
public static final int plot_image=0x7f02004c;
public static final int room_icon=0x7f02004d;
public static final int room_measure=0x7f02004e;
public static final int scan_icon=0x7f02004f;
public static final int timer_icon=0x7f020050;
public static final int wifi_network=0x7f020051;
}
public static final class id {
public static final int action0=0x7f090053;
public static final int action_bar=0x7f090041;
public static final int action_bar_activity_content=0x7f090003;
public static final int action_bar_container=0x7f090040;
public static final int action_bar_root=0x7f09003c;
public static final int action_bar_spinner=0x7f090002;
public static final int action_bar_subtitle=0x7f090022;
public static final int action_bar_title=0x7f090021;
public static final int action_context_bar=0x7f090042;
public static final int action_divider=0x7f090057;
public static final int action_menu_divider=0x7f090005;
public static final int action_menu_presenter=0x7f090006;
public static final int action_mode_bar=0x7f09003e;
public static final int action_mode_bar_stub=0x7f09003d;
public static final int action_mode_close_button=0x7f090023;
public static final int action_settings=0x7f090064;
public static final int activity_chooser_view_content=0x7f090024;
public static final int alertTitle=0x7f090030;
public static final int always=0x7f090019;
public static final int beginning=0x7f09001e;
public static final int buttonPanel=0x7f09002b;
public static final int cancel_action=0x7f090054;
public static final int checkbox=0x7f090039;
public static final int chronometer=0x7f09005a;
public static final int collapseActionView=0x7f09001a;
public static final int container=0x7f090050;
public static final int contentPanel=0x7f090031;
public static final int custom=0x7f090037;
public static final int customPanel=0x7f090036;
public static final int decor_content_parent=0x7f09003f;
public static final int default_activity_button=0x7f090027;
public static final int disableHome=0x7f09000d;
public static final int edit_query=0x7f090043;
public static final int end=0x7f09001f;
public static final int end_padder=0x7f09005f;
public static final int expand_activities_button=0x7f090025;
public static final int expanded_menu=0x7f090038;
public static final int home=0x7f090000;
public static final int homeAsUp=0x7f09000e;
public static final int icon=0x7f090029;
public static final int ifRoom=0x7f09001b;
public static final int image=0x7f090026;
public static final int imageView1=0x7f090060;
public static final int info=0x7f09005e;
public static final int level=0x7f090062;
public static final int line1=0x7f090058;
public static final int line3=0x7f09005c;
public static final int listMode=0x7f09000a;
public static final int list_item=0x7f090028;
public static final int listview=0x7f090063;
public static final int media_actions=0x7f090056;
public static final int middle=0x7f090020;
public static final int multiply=0x7f090014;
public static final int never=0x7f09001c;
public static final int none=0x7f09000f;
public static final int normal=0x7f09000b;
public static final int parentPanel=0x7f09002d;
public static final int progress_circular=0x7f090007;
public static final int progress_horizontal=0x7f090008;
public static final int radio=0x7f09003b;
public static final int screen=0x7f090015;
public static final int scrollIndicatorDown=0x7f090035;
public static final int scrollIndicatorUp=0x7f090032;
public static final int scrollView=0x7f090033;
public static final int search_badge=0x7f090045;
public static final int search_bar=0x7f090044;
public static final int search_button=0x7f090046;
public static final int search_close_btn=0x7f09004b;
public static final int search_edit_frame=0x7f090047;
public static final int search_go_btn=0x7f09004d;
public static final int search_mag_icon=0x7f090048;
public static final int search_plate=0x7f090049;
public static final int search_src_text=0x7f09004a;
public static final int search_voice_btn=0x7f09004e;
public static final int select_dialog_listview=0x7f09004f;
public static final int shortcut=0x7f09003a;
public static final int showCustom=0x7f090010;
public static final int showHome=0x7f090011;
public static final int showTitle=0x7f090012;
public static final int spacer=0x7f09002c;
public static final int split_action_bar=0x7f090004;
public static final int src_atop=0x7f090016;
public static final int src_in=0x7f090017;
public static final int src_over=0x7f090018;
public static final int ssid=0x7f090061;
public static final int startScanningBtn=0x7f090052;
public static final int status_bar_latest_event_content=0x7f090055;
public static final int submit_area=0x7f09004c;
public static final int tabMode=0x7f09000c;
public static final int text=0x7f09005d;
public static final int text2=0x7f09005b;
public static final int textSpacerNoButtons=0x7f090034;
public static final int text_title_id=0x7f090051;
public static final int time=0x7f090059;
public static final int title=0x7f09002a;
public static final int title_template=0x7f09002f;
public static final int topPanel=0x7f09002e;
public static final int up=0x7f090001;
public static final int useLogo=0x7f090013;
public static final int withText=0x7f09001d;
public static final int wrap_content=0x7f090009;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f080001;
/** The duration (in milliseconds) of the activity open/close and fragment open/close animations.
*/
public static final int abc_config_activityShortDur=0x7f080000;
/** The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
*/
public static final int abc_max_action_buttons=0x7f080004;
public static final int cancel_button_image_alpha=0x7f080003;
/** Maximum numerical value that will be shown in a status bar
notification icon or in the notification itself. Will be replaced
with @string/status_bar_notification_info_overflow when shown in the
UI.
*/
public static final int status_bar_notification_info_maxnum=0x7f080002;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f030000;
public static final int abc_action_bar_up_container=0x7f030001;
public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
public static final int abc_action_menu_item_layout=0x7f030003;
public static final int abc_action_menu_layout=0x7f030004;
public static final int abc_action_mode_bar=0x7f030005;
public static final int abc_action_mode_close_item_material=0x7f030006;
public static final int abc_activity_chooser_view=0x7f030007;
public static final int abc_activity_chooser_view_list_item=0x7f030008;
public static final int abc_alert_dialog_button_bar_material=0x7f030009;
public static final int abc_alert_dialog_material=0x7f03000a;
public static final int abc_dialog_title_material=0x7f03000b;
public static final int abc_expanded_menu_layout=0x7f03000c;
public static final int abc_list_menu_item_checkbox=0x7f03000d;
public static final int abc_list_menu_item_icon=0x7f03000e;
public static final int abc_list_menu_item_layout=0x7f03000f;
public static final int abc_list_menu_item_radio=0x7f030010;
public static final int abc_popup_menu_item_layout=0x7f030011;
public static final int abc_screen_content_include=0x7f030012;
public static final int abc_screen_simple=0x7f030013;
public static final int abc_screen_simple_overlay_action_mode=0x7f030014;
public static final int abc_screen_toolbar=0x7f030015;
public static final int abc_search_dropdown_item_icons_2line=0x7f030016;
public static final int abc_search_view=0x7f030017;
public static final int abc_select_dialog_material=0x7f030018;
public static final int activity_main=0x7f030019;
public static final int notification_media_action=0x7f03001a;
public static final int notification_media_cancel_action=0x7f03001b;
public static final int notification_template_big_media=0x7f03001c;
public static final int notification_template_big_media_narrow=0x7f03001d;
public static final int notification_template_lines=0x7f03001e;
public static final int notification_template_media=0x7f03001f;
public static final int notification_template_part_chronometer=0x7f030020;
public static final int notification_template_part_time=0x7f030021;
public static final int row_layout=0x7f030022;
public static final int scanning_activity=0x7f030023;
public static final int select_dialog_item_material=0x7f030024;
public static final int select_dialog_multichoice_material=0x7f030025;
public static final int select_dialog_singlechoice_material=0x7f030026;
public static final int support_simple_spinner_dropdown_item=0x7f030027;
}
public static final class menu {
public static final int main=0x7f0c0000;
}
public static final class string {
/** Content description for the action bar "home" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_home_description=0x7f0a0001;
/** Formatting string for describing the action bar's title/home/up affordance.
This is a single tappable "button" that includes the app icon, the Up indicator
(usually a "<" chevron) and the window title text.
%1$s is the title. %2$s is the description of what tapping/clicking the whole
thing is going to do.
*/
public static final int abc_action_bar_home_description_format=0x7f0a0005;
/** Just like action_bar_home_description_format, but this one will be used
if the window is also providing subtitle text.
%1$s is the title. %2$s is the subtitle. %3$s is the description of what
tapping/clicking the whole thing is going to do.
*/
public static final int abc_action_bar_home_subtitle_description_format=0x7f0a0006;
/** Content description for the action bar "up" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_up_description=0x7f0a0002;
/** Content description for the action menu overflow button. [CHAR LIMIT=NONE]
*/
public static final int abc_action_menu_overflow_description=0x7f0a0003;
/** Label for the "Done" button on the far left of action mode toolbars.
*/
public static final int abc_action_mode_done=0x7f0a0000;
/** Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25]
*/
public static final int abc_activity_chooser_view_see_all=0x7f0a000e;
/** ActivityChooserView - accessibility support
Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE]
*/
public static final int abc_activitychooserview_choose_application=0x7f0a000d;
/** Default text for a button that can be toggled on and off.
*/
public static final int abc_capital_off=0x7f0a0013;
/** Default text for a button that can be toggled on and off.
*/
public static final int abc_capital_on=0x7f0a0012;
/** Default hint text for the system-wide search UI's text field. [CHAR LIMIT=30]
*/
public static final int abc_search_hint=0x7f0a0008;
/** SearchView accessibility description for clear button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_clear=0x7f0a000a;
/** SearchView accessibility description for search text field [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_query=0x7f0a0009;
/** SearchView accessibility description for search button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_search=0x7f0a0007;
/** SearchView accessibility description for submit button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_submit=0x7f0a000b;
/** SearchView accessibility description for voice button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_voice=0x7f0a000c;
/** Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with=0x7f0a0010;
/** Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with_application=0x7f0a000f;
/** Content description for the Toolbar icon used to collapse an expanded action mode. [CHAR LIMIT=NONE]
*/
public static final int abc_toolbar_collapse_description=0x7f0a0004;
public static final int action_settings=0x7f0a0016;
public static final int app_name=0x7f0a0014;
public static final int hello_world=0x7f0a0015;
/** Text to use when the number in a notification info is too large
(greater than status_bar_notification_info_maxnum, defined in
values/config.xml) and must be truncated. May need to be localized
for most appropriate textual indicator of "more than X".
[CHAR LIMIT=4]
*/
public static final int status_bar_notification_info_overflow=0x7f0a0011;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0b0042;
public static final int AlertDialog_AppCompat_Light=0x7f0b0043;
public static final int Animation_AppCompat_Dialog=0x7f0b0049;
public static final int Animation_AppCompat_DropDownUp=0x7f0b004a;
/**
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
API 11 theme customizations can go here.
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
API 14 theme customizations can go here.
*/
public static final int AppBaseTheme=0x7f0b0133;
/** Application theme.
All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f0b0134;
public static final int Base_AlertDialog_AppCompat=0x7f0b00cc;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0b00cd;
public static final int Base_Animation_AppCompat_Dialog=0x7f0b00c8;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b00cb;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0b00c7;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00c6;
public static final int Base_TextAppearance_AppCompat=0x7f0b00d0;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b00db;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b00da;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0b00de;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b00dc;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b00d4;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b00d3;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b00d2;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b00d1;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b00d5;
/** Deprecated text styles
Deprecated text styles
Now deprecated styles
*/
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b00e1;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0b00e2;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b00e3;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00a4;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00a5;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b00e4;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b00e5;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b00dd;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b00a6;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00a8;
/** Search View result styles
*/
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b00a7;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0b00e6;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b00e7;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b00d8;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00d9;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0b00d6;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b00d7;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b008d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b008f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0091;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b008e;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0090;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b008c;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b008b;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b00df;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00e0;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b009a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b00a2;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b00a3;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b00ba;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b00c5;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b009b;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b00b0;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b00af;
public static final int Base_Theme_AppCompat=0x7f0b010d;
/** Menu/item attributes
*/
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b0110;
public static final int Base_Theme_AppCompat_Dialog=0x7f0b0113;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0115;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b0119;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0117;
/** We're not large, so redirect to Theme.AppCompat
*/
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b011b;
public static final int Base_Theme_AppCompat_Light=0x7f0b010e;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b010f;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0114;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0116;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b011a;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0118;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b011c;
public static final int Base_ThemeOverlay_AppCompat=0x7f0b011e;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b0123;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b0122;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0124;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b0121;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0127;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0128;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b00cf;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b00ce;
public static final int Base_V21_Theme_AppCompat=0x7f0b012b;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b012d;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0b012c;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b012e;
public static final int Base_V22_Theme_AppCompat=0x7f0b012f;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0b0130;
public static final int Base_V23_Theme_AppCompat=0x7f0b0131;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0b0132;
/** Base platform-dependent theme providing an action bar in a dark-themed activity.
*/
public static final int Base_V7_Theme_AppCompat=0x7f0b010b;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b0111;
/** Base platform-dependent theme providing an action bar in a light-themed activity.
*/
public static final int Base_V7_Theme_AppCompat_Light=0x7f0b010c;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b0112;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b00aa;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b00b4;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0b007c;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b007e;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b0083;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0087;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0085;
/** Action Button Styles
*/
public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0080;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0081;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0082;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0b008a;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00ab;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b00a9;
/** Bordered ink button
*/
public static final int Base_Widget_AppCompat_Button=0x7f0b00bd;
/** Borderless ink button
*/
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b00c0;
/** Colored borderless ink button
*/
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b00c1;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00c2;
/** Colored bordered ink button
*/
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b00bf;
/** Small bordered ink button
*/
public static final int Base_Widget_AppCompat_Button_Small=0x7f0b00be;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b00c9;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00ca;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b00b7;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b00b8;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00b9;
/** contains values used in all dpis except hdpi and xxhdpi
*/
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b00b6;
/** contains values used in all dpis
*/
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00b5;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b0097;
public static final int Base_Widget_AppCompat_EditText=0x7f0b00b3;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0b00c3;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b007d;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b007f;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0084;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0088;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0089;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0086;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b00a1;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b009f;
/** Popup Menu
*/
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b009d;
/** Base.Widget.AppCompat.Spinner.Underlined is overridden in ldltr-v21 and v23
*/
public static final int Base_Widget_AppCompat_ListView=0x7f0b0098;
/** Spinner Widgets
*/
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b0099;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b009c;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b00a0;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b009e;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00ac;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b0093;
/** Progress Bar
Progress Bar
*/
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0092;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0b00bb;
public static final int Base_Widget_AppCompat_SearchView=0x7f0b00b1;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00b2;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0b00bc;
public static final int Base_Widget_AppCompat_Spinner=0x7f0b0095;
/** The platform Underlined style only works in LTR in v21-22
*/
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b0096;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b00c4;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00ad;
/**
Widget.AppCompat.Toolbar style is purposely ommitted. This is because the support
Toolbar implementation is used on ALL platforms and relies on the unbundled attrs.
The supporting Toolbar styles below only use basic attrs so work fine.
*/
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00ae;
public static final int Platform_AppCompat=0x7f0b0109;
public static final int Platform_AppCompat_Light=0x7f0b010a;
/** Overlay themes
*/
public static final int Platform_ThemeOverlay_AppCompat=0x7f0b011d;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b011f;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b0120;
public static final int Platform_V11_AppCompat=0x7f0b0125;
public static final int Platform_V11_AppCompat_Light=0x7f0b0126;
public static final int Platform_V14_AppCompat=0x7f0b0129;
public static final int Platform_V14_AppCompat_Light=0x7f0b012a;
/** Spinner Widgets
*/
public static final int Platform_Widget_AppCompat_Spinner=0x7f0b0094;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b00f5;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b00ee;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b00f4;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b00f1;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b00f2;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b00f3;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b00e9;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b00eb;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b00ec;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b00ea;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b00ed;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b00e8;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b00ef;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b00f0;
public static final int TextAppearance_AppCompat=0x7f0b004b;
public static final int TextAppearance_AppCompat_Body1=0x7f0b0056;
public static final int TextAppearance_AppCompat_Body2=0x7f0b0055;
public static final int TextAppearance_AppCompat_Button=0x7f0b0060;
public static final int TextAppearance_AppCompat_Caption=0x7f0b0057;
public static final int TextAppearance_AppCompat_Display1=0x7f0b004f;
public static final int TextAppearance_AppCompat_Display2=0x7f0b004e;
public static final int TextAppearance_AppCompat_Display3=0x7f0b004d;
public static final int TextAppearance_AppCompat_Display4=0x7f0b004c;
public static final int TextAppearance_AppCompat_Headline=0x7f0b0050;
public static final int TextAppearance_AppCompat_Inverse=0x7f0b0059;
public static final int TextAppearance_AppCompat_Large=0x7f0b005a;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b005b;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b0069;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b0068;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b002b;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b002c;
public static final int TextAppearance_AppCompat_Medium=0x7f0b005c;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b005d;
public static final int TextAppearance_AppCompat_Menu=0x7f0b0058;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b002e;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b002d;
public static final int TextAppearance_AppCompat_Small=0x7f0b005e;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b005f;
public static final int TextAppearance_AppCompat_Subhead=0x7f0b0053;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b0054;
public static final int TextAppearance_AppCompat_Title=0x7f0b0051;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b0052;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0015;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0005;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0007;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0004;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0006;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0018;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b006c;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0017;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b006b;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b0061;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0062;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0019;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0029;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b002a;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b0063;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b0064;
/** These styles didn't exist on v7. Since we only use the media template in later versions
(ICS+), just define it here and use the correct references in values/v14
Use platform styles
*/
public static final int TextAppearance_StatusBar_EventContent=0x7f0b0077;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0b007a;
/** Use own styles for which platform styles are not public
*/
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0b0079;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0b007b;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0b0078;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0021;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0048;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0047;
/** Themes in the "Theme.AppCompat" family will contain an action bar by default.
If Holo themes are available on the current platform version they will be used.
A limited Holo-styled action bar will be provided on platform versions older
than 3.0. (API 11)
These theme declarations contain any version-independent specification. Items
that need to vary based on platform version should be defined in the corresponding
"Theme.Base" theme.
Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat=0x7f0b00f6;
/** Menu/item attributes
*/
public static final int Theme_AppCompat_CompactMenu=0x7f0b0103;
public static final int Theme_AppCompat_Dialog=0x7f0b00fd;
/** Material theme for alert dialog windows, which is used by the AlertDialog class.
This is basically a dialog but sets the background to empty so it can do
two-tone backgrounds. For applications targeting Honeycomb or newer, this is the default
AlertDialog theme.
*/
public static final int Theme_AppCompat_Dialog_Alert=0x7f0b00ff;
/** Variant of Theme.AppCompat.Dialog that has a nice minimum width for
a regular dialog.
*/
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0101;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b00fb;
/** Platform-independent theme providing an action bar in a light-themed activity.
*/
public static final int Theme_AppCompat_Light=0x7f0b00f7;
/** Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b00f8;
public static final int Theme_AppCompat_Light_Dialog=0x7f0b00fe;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b0100;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0102;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b00fc;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b00fa;
public static final int Theme_AppCompat_NoActionBar=0x7f0b00f9;
public static final int ThemeOverlay_AppCompat=0x7f0b0104;
/** Theme overlay that replaces the normal control color, which by default is the same as the
secondary text color, with the primary text color.
*/
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b0107;
/** Theme overlay that replaces colors with their dark versions but preserves
the value of colorAccent, colorPrimary and its variants.
*/
public static final int ThemeOverlay_AppCompat_Dark=0x7f0b0106;
/** Theme overlay that replaces colors with their dark versions and replaces the normal
control color, which by default is the same as the secondary text color, with the primary
text color.
*/
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0108;
/** Theme overlay that replaces colors with their light versions but preserves
the value of colorAccent, colorPrimary and its variants.
*/
public static final int ThemeOverlay_AppCompat_Light=0x7f0b0105;
/** Styles in here can be extended for customisation in your application. Each utilises
one of the.styles. If Holo themes are available on the current platform version
they will be used instead of the compat styles.
*/
public static final int Widget_AppCompat_ActionBar=0x7f0b0000;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0002;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b000d;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0011;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b000f;
public static final int Widget_AppCompat_ActionButton=0x7f0b000a;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b000b;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b000c;
public static final int Widget_AppCompat_ActionMode=0x7f0b0016;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0030;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b002f;
public static final int Widget_AppCompat_Button=0x7f0b0038;
public static final int Widget_AppCompat_Button_Borderless=0x7f0b003a;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b003b;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b003c;
public static final int Widget_AppCompat_Button_Colored=0x7f0b003d;
public static final int Widget_AppCompat_Button_Small=0x7f0b0039;
public static final int Widget_AppCompat_ButtonBar=0x7f0b003e;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b003f;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0035;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0036;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b0034;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b0012;
/** This style has an extra indirection to properly set RTL attributes. See styles_rtl.xml
*/
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b001e;
public static final int Widget_AppCompat_EditText=0x7f0b0033;
public static final int Widget_AppCompat_ImageButton=0x7f0b0040;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0001;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0003;
/**
The following themes are deprecated.
*/
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0065;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b000e;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0066;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0013;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0014;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0010;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0067;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b006f;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0071;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0070;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b006a;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0076;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0075;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b006d;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0074;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0073;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0026;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0024;
public static final int Widget_AppCompat_Light_SearchView=0x7f0b006e;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0072;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0022;
public static final int Widget_AppCompat_ListView=0x7f0b001f;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0020;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b0027;
public static final int Widget_AppCompat_PopupMenu=0x7f0b0025;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b0023;
public static final int Widget_AppCompat_PopupWindow=0x7f0b0028;
public static final int Widget_AppCompat_ProgressBar=0x7f0b0009;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0008;
public static final int Widget_AppCompat_RatingBar=0x7f0b0037;
public static final int Widget_AppCompat_SearchView=0x7f0b0031;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0032;
public static final int Widget_AppCompat_SeekBar=0x7f0b0044;
public static final int Widget_AppCompat_Spinner=0x7f0b001a;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b001c;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b001d;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b001b;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b0041;
/** Toolbar
*/
public static final int Widget_AppCompat_Toolbar=0x7f0b0045;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0046;
}
public static final class styleable {
/** ============================================
Attributes used to style the Action Bar.
These should be set on your theme; the default actionBarStyle will
propagate them to the correct elements as needed.
Please Note: when overriding attributes for an ActionBar style
you must specify each attribute twice: once with the "android:"
namespace prefix and once without.
<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 lan.wifianalyzer:background}</code></td><td> Specifies a background drawable for the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit lan.wifianalyzer:backgroundSplit}</code></td><td> Specifies a background drawable for the bottom component of a split action bar.</td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked lan.wifianalyzer:backgroundStacked}</code></td><td> Specifies a background drawable for a second stacked row of the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd lan.wifianalyzer:contentInsetEnd}</code></td><td> Minimum inset for content views within a bar.</td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft lan.wifianalyzer:contentInsetLeft}</code></td><td> Minimum inset for content views within a bar.</td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight lan.wifianalyzer:contentInsetRight}</code></td><td> Minimum inset for content views within a bar.</td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart lan.wifianalyzer:contentInsetStart}</code></td><td> Minimum inset for content views within a bar.</td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout lan.wifianalyzer:customNavigationLayout}</code></td><td> Specifies a layout for custom navigation.</td></tr>
<tr><td><code>{@link #ActionBar_displayOptions lan.wifianalyzer:displayOptions}</code></td><td> Options affecting how the action bar is displayed.</td></tr>
<tr><td><code>{@link #ActionBar_divider lan.wifianalyzer:divider}</code></td><td> Specifies the drawable used for item dividers.</td></tr>
<tr><td><code>{@link #ActionBar_elevation lan.wifianalyzer:elevation}</code></td><td> Elevation for the action bar itself </td></tr>
<tr><td><code>{@link #ActionBar_height lan.wifianalyzer:height}</code></td><td> Specifies a fixed height.</td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll lan.wifianalyzer:hideOnContentScroll}</code></td><td> Set true to hide the action bar on a vertical nested scroll of content.</td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator lan.wifianalyzer:homeAsUpIndicator}</code></td><td> Up navigation glyph </td></tr>
<tr><td><code>{@link #ActionBar_homeLayout lan.wifianalyzer:homeLayout}</code></td><td> Specifies a layout to use for the "home" section of the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_icon lan.wifianalyzer:icon}</code></td><td> Specifies the drawable used for the application icon.</td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle lan.wifianalyzer:indeterminateProgressStyle}</code></td><td> Specifies a style resource to use for an indeterminate progress spinner.</td></tr>
<tr><td><code>{@link #ActionBar_itemPadding lan.wifianalyzer:itemPadding}</code></td><td> Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.</td></tr>
<tr><td><code>{@link #ActionBar_logo lan.wifianalyzer:logo}</code></td><td> Specifies the drawable used for the application logo.</td></tr>
<tr><td><code>{@link #ActionBar_navigationMode lan.wifianalyzer:navigationMode}</code></td><td> The type of navigation to use.</td></tr>
<tr><td><code>{@link #ActionBar_popupTheme lan.wifianalyzer:popupTheme}</code></td><td> Reference to a theme that should be used to inflate popups
shown by widgets in the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding lan.wifianalyzer:progressBarPadding}</code></td><td> Specifies the horizontal padding on either end for an embedded progress bar.</td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle lan.wifianalyzer:progressBarStyle}</code></td><td> Specifies a style resource to use for an embedded progress bar.</td></tr>
<tr><td><code>{@link #ActionBar_subtitle lan.wifianalyzer:subtitle}</code></td><td> Specifies subtitle text used for navigationMode="normal" </td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle lan.wifianalyzer:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>
<tr><td><code>{@link #ActionBar_title lan.wifianalyzer:title}</code></td><td> Specifies title text used for navigationMode="normal" </td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle lan.wifianalyzer:titleTextStyle}</code></td><td> Specifies a style to use for title text.</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 = {
0x7f010000, 0x7f010001, 0x7f010031, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086
};
/**
<p>
@attr description
Specifies a background drawable for the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:background
*/
public static final int ActionBar_background = 11;
/**
<p>
@attr description
Specifies a background drawable for the bottom component of a split action bar.
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 13;
/**
<p>
@attr description
Specifies a background drawable for a second stacked row of the action bar.
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 12;
/**
<p>
@attr description
Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 22;
/**
<p>
@attr description
Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 23;
/**
<p>
@attr description
Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 24;
/**
<p>
@attr description
Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 21;
/**
<p>
@attr description
Specifies a layout for custom navigation. Overrides navigationMode.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 14;
/**
<p>
@attr description
Options affecting how the action bar is displayed.
<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>
<p>This is a private symbol.
@attr name lan.wifianalyzer:displayOptions
*/
public static final int ActionBar_displayOptions = 4;
/**
<p>
@attr description
Specifies the drawable used for item dividers.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:divider
*/
public static final int ActionBar_divider = 10;
/**
<p>
@attr description
Elevation for the action bar itself
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:elevation
*/
public static final int ActionBar_elevation = 25;
/**
<p>
@attr description
Specifies a fixed height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:height
*/
public static final int ActionBar_height = 1;
/**
<p>
@attr description
Set true to hide the action bar on a vertical nested scroll of content.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 20;
/**
<p>
@attr description
Up navigation glyph
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 2;
/**
<p>
@attr description
Specifies a layout to use for the "home" section of the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:homeLayout
*/
public static final int ActionBar_homeLayout = 15;
/**
<p>
@attr description
Specifies the drawable used for the application icon.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:icon
*/
public static final int ActionBar_icon = 8;
/**
<p>
@attr description
Specifies a style resource to use for an indeterminate progress spinner.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 17;
/**
<p>
@attr description
Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:itemPadding
*/
public static final int ActionBar_itemPadding = 19;
/**
<p>
@attr description
Specifies the drawable used for the application logo.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:logo
*/
public static final int ActionBar_logo = 9;
/**
<p>
@attr description
The type of navigation to use.
<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> Normal static title text </td></tr>
<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
</table>
<p>This is a private symbol.
@attr name lan.wifianalyzer:navigationMode
*/
public static final int ActionBar_navigationMode = 3;
/**
<p>
@attr description
Reference to a theme that should be used to inflate popups
shown by widgets in the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:popupTheme
*/
public static final int ActionBar_popupTheme = 26;
/**
<p>
@attr description
Specifies the horizontal padding on either end for an embedded progress bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 18;
/**
<p>
@attr description
Specifies a style resource to use for an embedded progress bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 16;
/**
<p>
@attr description
Specifies subtitle text used for navigationMode="normal"
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:subtitle
*/
public static final int ActionBar_subtitle = 5;
/**
<p>
@attr description
Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 7;
/**
<p>
@attr description
Specifies title text used for navigationMode="normal"
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:title
*/
public static final int ActionBar_title = 0;
/**
<p>
@attr description
Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 6;
/** Valid LayoutParams for views placed in the action bar as custom views.
<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;
/** Size of padding on either end of a divider.
*/
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 lan.wifianalyzer:background}</code></td><td> Specifies a background for the action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit lan.wifianalyzer:backgroundSplit}</code></td><td> Specifies a background for the split action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout lan.wifianalyzer:closeItemLayout}</code></td><td> Specifies a layout to use for the "close" item at the starting edge.</td></tr>
<tr><td><code>{@link #ActionMode_height lan.wifianalyzer:height}</code></td><td> Specifies a fixed height for the action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle lan.wifianalyzer:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle lan.wifianalyzer:titleTextStyle}</code></td><td> Specifies a style to use for title text.</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, 0x7f010072, 0x7f010073, 0x7f010077,
0x7f010079, 0x7f010087
};
/**
<p>
@attr description
Specifies a background for the action mode bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:background
*/
public static final int ActionMode_background = 3;
/**
<p>
@attr description
Specifies a background for the split action mode bar.
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>
@attr description
Specifies a layout to use for the "close" item at the starting edge.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>
@attr description
Specifies a fixed height for the action mode bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:height
*/
public static final int ActionMode_height = 0;
/**
<p>
@attr description
Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>
@attr description
Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attrbitutes for 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 lan.wifianalyzer:expandActivityOverflowButtonDrawable}</code></td><td> The drawable to show in the button for expanding the activities overflow popup.</td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount lan.wifianalyzer:initialActivityCount}</code></td><td> The maximal number of items initially shown in the activity list.</td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01009f, 0x7f0100a0
};
/**
<p>
@attr description
The drawable to show in the button for expanding the activities overflow popup.
<strong>Note:</strong> Clients would like to set this drawable
as a clue about the action the chosen activity will perform. For
example, if share activity is to be chosen the drawable should
give a clue that sharing is to be performed.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>
@attr description
The maximal number of items initially shown in the activity list.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** The set of attributes that describe a AlertDialog's 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 #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout lan.wifianalyzer:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout lan.wifianalyzer:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout lan.wifianalyzer:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout lan.wifianalyzer:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout lan.wifianalyzer: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, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca,
0x7f0100cb, 0x7f0100cc
};
/**
<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 lan.wifianalyzer.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 lan.wifianalyzer:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps lan.wifianalyzer:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f0100a1
};
/**
<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>
@attr description
Present the text in ALL CAPS. This may use a small-caps form when available.
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** @hide
<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 lan.wifianalyzer:allowStacking}</code></td><td> Whether to automatically stack the buttons when there is not
enough space to lay them out side-by-side.</td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100cd
};
/**
<p>
@attr description
Whether to automatically stack the buttons when there is not
enough space to lay them out side-by-side.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint lan.wifianalyzer:buttonTint}</code></td><td> Tint to apply to the button drawable.</td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode lan.wifianalyzer:buttonTintMode}</code></td><td> Blending mode used to apply the button tint.</td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100bf, 0x7f0100c0
};
/**
<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>
@attr description
Tint to apply to the button drawable.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>
@attr description
Blending mode used to apply the button tint.
<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> The tint is drawn on top of the drawable.
[Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr>
<tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s
color channels are thrown out. [Sa * Da, Sc * Da] </td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha
channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr>
<tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of
the tint. [Sa * Da, Sc * Dc] </td></tr>
<tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr>
</table>
<p>This is a private symbol.
@attr name lan.wifianalyzer:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength lan.wifianalyzer:arrowHeadLength}</code></td><td> The length of the arrow head when formed to make an arrow </td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength lan.wifianalyzer:arrowShaftLength}</code></td><td> The length of the shaft when formed to make an arrow </td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength lan.wifianalyzer:barLength}</code></td><td> The length of the bars when they are parallel to each other </td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color lan.wifianalyzer:color}</code></td><td> The drawing color for the bars </td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize lan.wifianalyzer:drawableSize}</code></td><td> The total size of the drawable </td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars lan.wifianalyzer:gapBetweenBars}</code></td><td> The max gap between the bars when they are parallel to each other </td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars lan.wifianalyzer:spinBars}</code></td><td> Whether bars should rotate or not during transition </td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness lan.wifianalyzer:thickness}</code></td><td> The thickness (stroke size) for the bar paint </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 = {
0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9,
0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd
};
/**
<p>
@attr description
The length of the arrow head when formed to make an arrow
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>
@attr description
The length of the shaft when formed to make an arrow
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>
@attr description
The length of the bars when they are parallel to each other
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>
@attr description
The drawing color for the bars
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>
@attr description
The total size of the drawable
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>
@attr description
The max gap between the bars when they are parallel to each other
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>
@attr description
Whether bars should rotate or not during transition
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>
@attr description
The thickness (stroke size) for the bar paint
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td> When set to false, prevents the layout from aligning its children's
baselines.</td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td> When a linear layout is part of another layout that is baseline
aligned, it can specify which of its children to baseline align to
(that is, which child TextView).</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> Should the layout be a column or a row? Use "horizontal"
for a row, "vertical" for a column.</td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td> Defines the maximum weight sum.</td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider lan.wifianalyzer:divider}</code></td><td> Drawable to use as a vertical divider between buttons.</td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding lan.wifianalyzer:dividerPadding}</code></td><td> Size of padding on either end of a divider.</td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild lan.wifianalyzer:measureWithLargestChild}</code></td><td> When set to true, all children with a weight will be considered having
the minimum size of the largest child.</td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers lan.wifianalyzer:showDividers}</code></td><td> Setting for which dividers to show.</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, 0x7f010076, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4
};
/**
<p>
@attr description
When set to false, prevents the layout from aligning its children's
baselines. This attribute is particularly useful when the children
use different values for gravity. The default value is true.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#baselineAligned}.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>
@attr description
When a linear layout is part of another layout that is baseline
aligned, it can specify which of its children to baseline align to
(that is, which child TextView).
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#baselineAlignedChildIndex}.
@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>
@attr description
Should the layout be a column or a row? Use "horizontal"
for a row, "vertical" for a column. The default is
horizontal.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#orientation}.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>
@attr description
Defines the maximum weight sum. If unspecified, the sum is computed
by adding the layout_weight of all of the children. This can be
used for instance to give a single child 50% of the total available
space by giving it a layout_weight of 0.5 and setting the weightSum
to 1.0.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#weightSum}.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>
@attr description
Drawable to use as a vertical divider between buttons.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>
@attr description
Size of padding on either end of a divider.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>
@attr description
When set to true, all children with a weight will be considered having
the minimum size of the largest child. If false, all children are
measured normally.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>
@attr description
Setting for which dividers to show.
<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>
<p>This is a private symbol.
@attr name lan.wifianalyzer: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> Amount of pixels by which the drop down should be offset horizontally.</td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td> Amount of pixels by which the drop down should be offset vertically.</td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>
@attr description
Amount of pixels by which the drop down should be offset horizontally.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownHorizontalOffset}.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>
@attr description
Amount of pixels by which the drop down should be offset vertically.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownVerticalOffset}.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Base attributes that are available to all groups.
<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> Whether the items are capable of displaying a check mark.</td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td> Whether the items are enabled.</td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td> The ID of the group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td> The category applied to all items within this group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to all items within this group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td> Whether the items are shown/visible.</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>
@attr description
Whether the items are capable of displaying a check mark.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checkableBehavior}.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>
@attr description
Whether the items are enabled.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#enabled}.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>
@attr description
The ID of the group.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#id}.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>
@attr description
The category applied to all items within this group.
(This will be or'ed with the orderInCategory attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#menuCategory}.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>
@attr description
The order within the category applied to all items within this group.
(This will be or'ed with the category attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#orderInCategory}.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>
@attr description
Whether the items are shown/visible.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#visible}.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Base attributes that are available to all Item objects.
<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 lan.wifianalyzer:actionLayout}</code></td><td> An optional layout to be used as an action view.</td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass lan.wifianalyzer:actionProviderClass}</code></td><td> The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.</td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass lan.wifianalyzer:actionViewClass}</code></td><td> The name of an optional View class to instantiate and use as an
action view.</td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td> The alphabetic shortcut key.</td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td> Whether the item is capable of displaying a check mark.</td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td> Whether the item is checked.</td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td> Whether the item is enabled.</td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td> The icon associated with this item.</td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td> The ID of the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td> The category applied to the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td> The numeric shortcut key.</td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td> Name of a method on the Context used to inflate the menu that will be
called when the item is clicked.</td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td> The title associated with the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td> The condensed title associated with the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td> Whether the item is shown/visible.</td></tr>
<tr><td><code>{@link #MenuItem_showAsAction lan.wifianalyzer:showAsAction}</code></td><td> How this item should display in the Action Bar, if present.</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, 0x7f01008e, 0x7f01008f, 0x7f010090,
0x7f010091
};
/**
<p>
@attr description
An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>
@attr description
The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
for more info.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>
@attr description
The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:actionViewClass
*/
public static final int MenuItem_actionViewClass = 15;
/**
<p>
@attr description
The alphabetic shortcut key. This is the shortcut when using a keyboard
with alphabetic keys.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#alphabeticShortcut}.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>
@attr description
Whether the item is capable of displaying a check mark.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checkable}.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>
@attr description
Whether the item is checked. Note that you must first have enabled checking with
the checkable attribute or else the check mark will not appear.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checked}.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>
@attr description
Whether the item is enabled.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#enabled}.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>
@attr description
The icon associated with this item. This icon will not always be shown, so
the title should be sufficient in describing this item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#icon}.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>
@attr description
The ID of the item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#id}.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>
@attr description
The category applied to the item.
(This will be or'ed with the orderInCategory attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#menuCategory}.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>
@attr description
The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
keyboard.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#numericShortcut}.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>
@attr description
Name of a method on the Context used to inflate the menu that will be
called when the item is clicked.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#onClick}.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>
@attr description
The order within the category applied to the item.
(This will be or'ed with the category attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#orderInCategory}.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>
@attr description
The title associated with the item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#title}.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>
@attr description
The condensed title associated with the item. This is used in situations where the
normal title may be too long to be displayed.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#titleCondensed}.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>
@attr description
Whether the item is shown/visible.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#visible}.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>
@attr description
How this item should display in the Action Bar, if present.
<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> Never show this item in an action bar, show it in the overflow menu instead.
Mutually exclusive with "ifRoom" and "always". </td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
by the system. Favor this option over "always" where possible.
Mutually exclusive with "never" and "always". </td></tr>
<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
the system's limits of how much stuff to put there. This may make
your action bar look bad on some screens. In most cases you should
use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
label with it even if it has an icon representation. </td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
item. When expanded, the action view takes over a
larger segment of its container. </td></tr>
</table>
<p>This is a private symbol.
@attr name lan.wifianalyzer: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> Default background for the menu header.</td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td> Default horizontal divider between rows of menu items.</td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td> Default background for each menu item.</td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td> Default disabled icon alpha for each menu item that shows an icon.</td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td> Default appearance of menu item text.</td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td> Default vertical divider between menu items.</td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td> Default animations for the menu.</td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing lan.wifianalyzer:preserveIconSpacing}</code></td><td> Whether space should be reserved in layout when an icon is missing.</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, 0x7f01008d
};
/**
<p>
@attr description
Default background for the menu header.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#headerBackground}.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>
@attr description
Default horizontal divider between rows of menu items.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#horizontalDivider}.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>
@attr description
Default background for each menu item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemBackground}.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>
@attr description
Default disabled icon alpha for each menu item that shows an icon.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemIconDisabledAlpha}.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>
@attr description
Default appearance of menu item text.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemTextAppearance}.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>
@attr description
Default vertical divider between menu items.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#verticalDivider}.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>
@attr description
Default animations for the menu.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#windowAnimationStyle}.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>
@attr description
Whether space should be reserved in layout when an icon is missing.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor lan.wifianalyzer:overlapAnchor}</code></td><td> Whether the popup window should overlap its anchor view.</td></tr>
</table>
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x7f0100b5
};
/**
<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>
@attr description
Whether the popup window should overlap its anchor view.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer: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 lan.wifianalyzer:state_above_anchor}</code></td><td> State identifier indicating the popup will be above the anchor.</td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100b4
};
/**
<p>
@attr description
State identifier indicating the popup will be above the anchor.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td> The IME options to set on the query text field.</td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td> The input type to set on the query text field.</td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td> An optional maximum width of the SearchView.</td></tr>
<tr><td><code>{@link #SearchView_closeIcon lan.wifianalyzer:closeIcon}</code></td><td> Close button icon </td></tr>
<tr><td><code>{@link #SearchView_commitIcon lan.wifianalyzer:commitIcon}</code></td><td> Commit icon shown in the query suggestion row </td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint lan.wifianalyzer:defaultQueryHint}</code></td><td> Default query hint used when {@code queryHint} is undefined and
the search view's {@code SearchableInfo} does not provide a hint.</td></tr>
<tr><td><code>{@link #SearchView_goIcon lan.wifianalyzer:goIcon}</code></td><td> Go button icon </td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault lan.wifianalyzer:iconifiedByDefault}</code></td><td> The default state of the SearchView.</td></tr>
<tr><td><code>{@link #SearchView_layout lan.wifianalyzer:layout}</code></td><td> The layout to use for the search view.</td></tr>
<tr><td><code>{@link #SearchView_queryBackground lan.wifianalyzer:queryBackground}</code></td><td> Background for the section containing the search query </td></tr>
<tr><td><code>{@link #SearchView_queryHint lan.wifianalyzer:queryHint}</code></td><td> An optional user-defined query hint string to be displayed in the empty query field.</td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon lan.wifianalyzer:searchHintIcon}</code></td><td> Search icon displayed as a text field hint </td></tr>
<tr><td><code>{@link #SearchView_searchIcon lan.wifianalyzer:searchIcon}</code></td><td> Search icon </td></tr>
<tr><td><code>{@link #SearchView_submitBackground lan.wifianalyzer:submitBackground}</code></td><td> Background for the section containing the action (e.</td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout lan.wifianalyzer:suggestionRowLayout}</code></td><td> Layout for query suggestion rows </td></tr>
<tr><td><code>{@link #SearchView_voiceIcon lan.wifianalyzer:voiceIcon}</code></td><td> Voice button icon </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,
0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095,
0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099,
0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d,
0x7f01009e
};
/**
<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>
@attr description
The IME options to set on the query text field.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#imeOptions}.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>
@attr description
The input type to set on the query text field.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#inputType}.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>
@attr description
An optional maximum width of the SearchView.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#maxWidth}.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>
@attr description
Close button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>
@attr description
Commit icon shown in the query suggestion row
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>
@attr description
Default query hint used when {@code queryHint} is undefined and
the search view's {@code SearchableInfo} does not provide a hint.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>
@attr description
Go button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>
@attr description
The default state of the SearchView. If true, it will be iconified when not in
use and expanded when clicked.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>
@attr description
The layout to use for the search view.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:layout
*/
public static final int SearchView_layout = 4;
/**
<p>
@attr description
Background for the section containing the search query
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>
@attr description
An optional user-defined query hint string to be displayed in the empty query field.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>
@attr description
Search icon displayed as a text field hint
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>
@attr description
Search icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>
@attr description
Background for the section containing the action (e.g. voice search)
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>
@attr description
Layout for query suggestion rows
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>
@attr description
Voice button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td> Width of the dropdown in spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td> Background drawable to use for the dropdown in spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td> The prompt to display when the spinner's dialog is shown.</td></tr>
<tr><td><code>{@link #Spinner_popupTheme lan.wifianalyzer:popupTheme}</code></td><td> Theme to use for the drop-down or dialog popup window.</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, 0x7f010086
};
/**
<p>
@attr description
Width of the dropdown in spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownWidth}.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 2;
/**
<p>
@attr description
Background drawable to use for the dropdown in spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#popupBackground}.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 0;
/**
<p>
@attr description
The prompt to display when the spinner's dialog is shown.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#prompt}.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 1;
/**
<p>
@attr description
Theme to use for the drop-down or dialog popup window.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer: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> Text to use when the switch is in the unchecked/"off" state.</td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td> Text to use when the switch is in the checked/"on" state.</td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td> Drawable to use as the "thumb" that switches back and forth.</td></tr>
<tr><td><code>{@link #SwitchCompat_showText lan.wifianalyzer:showText}</code></td><td> Whether to draw on/off text.</td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack lan.wifianalyzer:splitTrack}</code></td><td> Whether to split the track and leave a gap for the thumb drawable.</td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth lan.wifianalyzer:switchMinWidth}</code></td><td> Minimum width for the switch component </td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding lan.wifianalyzer:switchPadding}</code></td><td> Minimum space between the switch and caption text </td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance lan.wifianalyzer:switchTextAppearance}</code></td><td> TextAppearance style for text displayed on the switch thumb.</td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding lan.wifianalyzer:thumbTextPadding}</code></td><td> Amount of padding on either side of text within the switch thumb.</td></tr>
<tr><td><code>{@link #SwitchCompat_track lan.wifianalyzer:track}</code></td><td> Drawable to use as the "track" that the switch thumb slides within.</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, 0x7f0100c1,
0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5,
0x7f0100c6, 0x7f0100c7
};
/**
<p>
@attr description
Text to use when the switch is in the unchecked/"off" state.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#textOff}.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>
@attr description
Text to use when the switch is in the checked/"on" state.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#textOn}.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>
@attr description
Drawable to use as the "thumb" that switches back and forth.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#thumb}.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>
@attr description
Whether to draw on/off text.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:showText
*/
public static final int SwitchCompat_showText = 9;
/**
<p>
@attr description
Whether to split the track and leave a gap for the thumb drawable.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:splitTrack
*/
public static final int SwitchCompat_splitTrack = 8;
/**
<p>
@attr description
Minimum width for the switch component
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 6;
/**
<p>
@attr description
Minimum space between the switch and caption text
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:switchPadding
*/
public static final int SwitchCompat_switchPadding = 7;
/**
<p>
@attr description
TextAppearance style for text displayed on the switch thumb.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 5;
/**
<p>
@attr description
Amount of padding on either side of text within the switch thumb.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 4;
/**
<p>
@attr description
Drawable to use as the "track" that the switch thumb slides within.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:track
*/
public static final int SwitchCompat_track = 3;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_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 lan.wifianalyzer:textAllCaps}</code></td><td> Present the text in ALL CAPS.</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,
0x7f0100a1
};
/**
<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>
@attr description
Present the text in ALL CAPS. This may use a small-caps form when available.
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 8;
/** These are the standard attributes that make up a complete 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 lan.wifianalyzer:actionBarDivider}</code></td><td> Custom divider drawable to use for elements in the action bar.</td></tr>
<tr><td><code>{@link #Theme_actionBarItemBackground lan.wifianalyzer:actionBarItemBackground}</code></td><td> Custom item state list drawable background for action bar items.</td></tr>
<tr><td><code>{@link #Theme_actionBarPopupTheme lan.wifianalyzer:actionBarPopupTheme}</code></td><td> Reference to a theme that should be used to inflate popups
shown by widgets in the action bar.</td></tr>
<tr><td><code>{@link #Theme_actionBarSize lan.wifianalyzer:actionBarSize}</code></td><td> Size of the Action Bar, including the contextual
bar used to present Action Modes.</td></tr>
<tr><td><code>{@link #Theme_actionBarSplitStyle lan.wifianalyzer:actionBarSplitStyle}</code></td><td> Reference to a style for the split Action Bar.</td></tr>
<tr><td><code>{@link #Theme_actionBarStyle lan.wifianalyzer:actionBarStyle}</code></td><td> Reference to a style for the Action Bar </td></tr>
<tr><td><code>{@link #Theme_actionBarTabBarStyle lan.wifianalyzer:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTabStyle lan.wifianalyzer:actionBarTabStyle}</code></td><td> Default style for tabs within an action bar </td></tr>
<tr><td><code>{@link #Theme_actionBarTabTextStyle lan.wifianalyzer:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTheme lan.wifianalyzer:actionBarTheme}</code></td><td> Reference to a theme that should be used to inflate the
action bar.</td></tr>
<tr><td><code>{@link #Theme_actionBarWidgetTheme lan.wifianalyzer:actionBarWidgetTheme}</code></td><td> Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar.</td></tr>
<tr><td><code>{@link #Theme_actionButtonStyle lan.wifianalyzer:actionButtonStyle}</code></td><td> Default action button style.</td></tr>
<tr><td><code>{@link #Theme_actionDropDownStyle lan.wifianalyzer:actionDropDownStyle}</code></td><td> Default ActionBar dropdown style.</td></tr>
<tr><td><code>{@link #Theme_actionMenuTextAppearance lan.wifianalyzer:actionMenuTextAppearance}</code></td><td> TextAppearance style that will be applied to text that
appears within action menu items.</td></tr>
<tr><td><code>{@link #Theme_actionMenuTextColor lan.wifianalyzer:actionMenuTextColor}</code></td><td> Color for text that appears within action menu items.</td></tr>
<tr><td><code>{@link #Theme_actionModeBackground lan.wifianalyzer:actionModeBackground}</code></td><td> Background drawable to use for action mode UI </td></tr>
<tr><td><code>{@link #Theme_actionModeCloseButtonStyle lan.wifianalyzer:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCloseDrawable lan.wifianalyzer:actionModeCloseDrawable}</code></td><td> Drawable to use for the close action mode button </td></tr>
<tr><td><code>{@link #Theme_actionModeCopyDrawable lan.wifianalyzer:actionModeCopyDrawable}</code></td><td> Drawable to use for the Copy action button in Contextual Action Bar </td></tr>
<tr><td><code>{@link #Theme_actionModeCutDrawable lan.wifianalyzer:actionModeCutDrawable}</code></td><td> Drawable to use for the Cut action button in Contextual Action Bar </td></tr>
<tr><td><code>{@link #Theme_actionModeFindDrawable lan.wifianalyzer:actionModeFindDrawable}</code></td><td> Drawable to use for the Find action button in WebView selection action modes </td></tr>
<tr><td><code>{@link #Theme_actionModePasteDrawable lan.wifianalyzer:actionModePasteDrawable}</code></td><td> Drawable to use for the Paste action button in Contextual Action Bar </td></tr>
<tr><td><code>{@link #Theme_actionModePopupWindowStyle lan.wifianalyzer:actionModePopupWindowStyle}</code></td><td> PopupWindow style to use for action modes when showing as a window overlay.</td></tr>
<tr><td><code>{@link #Theme_actionModeSelectAllDrawable lan.wifianalyzer:actionModeSelectAllDrawable}</code></td><td> Drawable to use for the Select all action button in Contextual Action Bar </td></tr>
<tr><td><code>{@link #Theme_actionModeShareDrawable lan.wifianalyzer:actionModeShareDrawable}</code></td><td> Drawable to use for the Share action button in WebView selection action modes </td></tr>
<tr><td><code>{@link #Theme_actionModeSplitBackground lan.wifianalyzer:actionModeSplitBackground}</code></td><td> Background drawable to use for action mode UI in the lower split bar </td></tr>
<tr><td><code>{@link #Theme_actionModeStyle lan.wifianalyzer:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeWebSearchDrawable lan.wifianalyzer:actionModeWebSearchDrawable}</code></td><td> Drawable to use for the Web Search action button in WebView selection action modes </td></tr>
<tr><td><code>{@link #Theme_actionOverflowButtonStyle lan.wifianalyzer:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionOverflowMenuStyle lan.wifianalyzer:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_activityChooserViewStyle lan.wifianalyzer:activityChooserViewStyle}</code></td><td> Default ActivityChooserView style.</td></tr>
<tr><td><code>{@link #Theme_alertDialogButtonGroupStyle lan.wifianalyzer:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogCenterButtons lan.wifianalyzer:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogStyle lan.wifianalyzer:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogTheme lan.wifianalyzer:alertDialogTheme}</code></td><td> Theme to use for alert dialogs spawned from this theme.</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 lan.wifianalyzer:autoCompleteTextViewStyle}</code></td><td> Default AutoCompleteTextView style.</td></tr>
<tr><td><code>{@link #Theme_borderlessButtonStyle lan.wifianalyzer:borderlessButtonStyle}</code></td><td> Style for buttons without an explicit border, often used in groups.</td></tr>
<tr><td><code>{@link #Theme_buttonBarButtonStyle lan.wifianalyzer:buttonBarButtonStyle}</code></td><td> Style for buttons within button bars </td></tr>
<tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle lan.wifianalyzer:buttonBarNegativeButtonStyle}</code></td><td> Style for the "negative" buttons within button bars </td></tr>
<tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle lan.wifianalyzer:buttonBarNeutralButtonStyle}</code></td><td> Style for the "neutral" buttons within button bars </td></tr>
<tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle lan.wifianalyzer:buttonBarPositiveButtonStyle}</code></td><td> Style for the "positive" buttons within button bars </td></tr>
<tr><td><code>{@link #Theme_buttonBarStyle lan.wifianalyzer:buttonBarStyle}</code></td><td> Style for button bars </td></tr>
<tr><td><code>{@link #Theme_buttonStyle lan.wifianalyzer:buttonStyle}</code></td><td> Normal Button style.</td></tr>
<tr><td><code>{@link #Theme_buttonStyleSmall lan.wifianalyzer:buttonStyleSmall}</code></td><td> Small Button style.</td></tr>
<tr><td><code>{@link #Theme_checkboxStyle lan.wifianalyzer:checkboxStyle}</code></td><td> Default Checkbox style.</td></tr>
<tr><td><code>{@link #Theme_checkedTextViewStyle lan.wifianalyzer:checkedTextViewStyle}</code></td><td> Default CheckedTextView style.</td></tr>
<tr><td><code>{@link #Theme_colorAccent lan.wifianalyzer:colorAccent}</code></td><td> Bright complement to the primary branding color.</td></tr>
<tr><td><code>{@link #Theme_colorButtonNormal lan.wifianalyzer:colorButtonNormal}</code></td><td> The color applied to framework buttons in their normal state.</td></tr>
<tr><td><code>{@link #Theme_colorControlActivated lan.wifianalyzer:colorControlActivated}</code></td><td> The color applied to framework controls in their activated (ex.</td></tr>
<tr><td><code>{@link #Theme_colorControlHighlight lan.wifianalyzer:colorControlHighlight}</code></td><td> The color applied to framework control highlights (ex.</td></tr>
<tr><td><code>{@link #Theme_colorControlNormal lan.wifianalyzer:colorControlNormal}</code></td><td> The color applied to framework controls in their normal state.</td></tr>
<tr><td><code>{@link #Theme_colorPrimary lan.wifianalyzer:colorPrimary}</code></td><td> The primary branding color for the app.</td></tr>
<tr><td><code>{@link #Theme_colorPrimaryDark lan.wifianalyzer:colorPrimaryDark}</code></td><td> Dark variant of the primary branding color.</td></tr>
<tr><td><code>{@link #Theme_colorSwitchThumbNormal lan.wifianalyzer:colorSwitchThumbNormal}</code></td><td> The color applied to framework switch thumbs in their normal state.</td></tr>
<tr><td><code>{@link #Theme_controlBackground lan.wifianalyzer:controlBackground}</code></td><td> The background used by framework controls.</td></tr>
<tr><td><code>{@link #Theme_dialogPreferredPadding lan.wifianalyzer:dialogPreferredPadding}</code></td><td> Preferred padding for dialog content.</td></tr>
<tr><td><code>{@link #Theme_dialogTheme lan.wifianalyzer:dialogTheme}</code></td><td> Theme to use for dialogs spawned from this theme.</td></tr>
<tr><td><code>{@link #Theme_dividerHorizontal lan.wifianalyzer:dividerHorizontal}</code></td><td> A drawable that may be used as a horizontal divider between visual elements.</td></tr>
<tr><td><code>{@link #Theme_dividerVertical lan.wifianalyzer:dividerVertical}</code></td><td> A drawable that may be used as a vertical divider between visual elements.</td></tr>
<tr><td><code>{@link #Theme_dropDownListViewStyle lan.wifianalyzer:dropDownListViewStyle}</code></td><td> ListPopupWindow compatibility </td></tr>
<tr><td><code>{@link #Theme_dropdownListPreferredItemHeight lan.wifianalyzer:dropdownListPreferredItemHeight}</code></td><td> The preferred item height for dropdown lists.</td></tr>
<tr><td><code>{@link #Theme_editTextBackground lan.wifianalyzer:editTextBackground}</code></td><td> EditText background drawable.</td></tr>
<tr><td><code>{@link #Theme_editTextColor lan.wifianalyzer:editTextColor}</code></td><td> EditText text foreground color.</td></tr>
<tr><td><code>{@link #Theme_editTextStyle lan.wifianalyzer:editTextStyle}</code></td><td> Default EditText style.</td></tr>
<tr><td><code>{@link #Theme_homeAsUpIndicator lan.wifianalyzer:homeAsUpIndicator}</code></td><td> Specifies a drawable to use for the 'home as up' indicator.</td></tr>
<tr><td><code>{@link #Theme_imageButtonStyle lan.wifianalyzer:imageButtonStyle}</code></td><td> ImageButton background drawable.</td></tr>
<tr><td><code>{@link #Theme_listChoiceBackgroundIndicator lan.wifianalyzer:listChoiceBackgroundIndicator}</code></td><td> Drawable used as a background for selected list items.</td></tr>
<tr><td><code>{@link #Theme_listDividerAlertDialog lan.wifianalyzer:listDividerAlertDialog}</code></td><td> The list divider used in alert dialogs.</td></tr>
<tr><td><code>{@link #Theme_listPopupWindowStyle lan.wifianalyzer:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeight lan.wifianalyzer:listPreferredItemHeight}</code></td><td> The preferred list item height.</td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeightLarge lan.wifianalyzer:listPreferredItemHeightLarge}</code></td><td> A larger, more robust list item height.</td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeightSmall lan.wifianalyzer:listPreferredItemHeightSmall}</code></td><td> A smaller, sleeker list item height.</td></tr>
<tr><td><code>{@link #Theme_listPreferredItemPaddingLeft lan.wifianalyzer:listPreferredItemPaddingLeft}</code></td><td> The preferred padding along the left edge of list items.</td></tr>
<tr><td><code>{@link #Theme_listPreferredItemPaddingRight lan.wifianalyzer:listPreferredItemPaddingRight}</code></td><td> The preferred padding along the right edge of list items.</td></tr>
<tr><td><code>{@link #Theme_panelBackground lan.wifianalyzer:panelBackground}</code></td><td> The background of a panel when it is inset from the left and right edges of the screen.</td></tr>
<tr><td><code>{@link #Theme_panelMenuListTheme lan.wifianalyzer:panelMenuListTheme}</code></td><td> Default Panel Menu style.</td></tr>
<tr><td><code>{@link #Theme_panelMenuListWidth lan.wifianalyzer:panelMenuListWidth}</code></td><td> Default Panel Menu width.</td></tr>
<tr><td><code>{@link #Theme_popupMenuStyle lan.wifianalyzer:popupMenuStyle}</code></td><td> Default PopupMenu style.</td></tr>
<tr><td><code>{@link #Theme_popupWindowStyle lan.wifianalyzer:popupWindowStyle}</code></td><td> Default PopupWindow style.</td></tr>
<tr><td><code>{@link #Theme_radioButtonStyle lan.wifianalyzer:radioButtonStyle}</code></td><td> Default RadioButton style.</td></tr>
<tr><td><code>{@link #Theme_ratingBarStyle lan.wifianalyzer:ratingBarStyle}</code></td><td> Default RatingBar style.</td></tr>
<tr><td><code>{@link #Theme_searchViewStyle lan.wifianalyzer:searchViewStyle}</code></td><td> Style for the search query widget.</td></tr>
<tr><td><code>{@link #Theme_seekBarStyle lan.wifianalyzer:seekBarStyle}</code></td><td> Default SeekBar style.</td></tr>
<tr><td><code>{@link #Theme_selectableItemBackground lan.wifianalyzer:selectableItemBackground}</code></td><td> A style that may be applied to buttons or other selectable items
that should react to pressed and focus states, but that do not
have a clear visual border along the edges.</td></tr>
<tr><td><code>{@link #Theme_selectableItemBackgroundBorderless lan.wifianalyzer:selectableItemBackgroundBorderless}</code></td><td> Background drawable for borderless standalone items that need focus/pressed states.</td></tr>
<tr><td><code>{@link #Theme_spinnerDropDownItemStyle lan.wifianalyzer:spinnerDropDownItemStyle}</code></td><td> Default Spinner style.</td></tr>
<tr><td><code>{@link #Theme_spinnerStyle lan.wifianalyzer:spinnerStyle}</code></td><td> Default Spinner style.</td></tr>
<tr><td><code>{@link #Theme_switchStyle lan.wifianalyzer:switchStyle}</code></td><td> Default style for the Switch widget.</td></tr>
<tr><td><code>{@link #Theme_textAppearanceLargePopupMenu lan.wifianalyzer:textAppearanceLargePopupMenu}</code></td><td> Text color, typeface, size, and style for the text inside of a popup menu.</td></tr>
<tr><td><code>{@link #Theme_textAppearanceListItem lan.wifianalyzer:textAppearanceListItem}</code></td><td> The preferred TextAppearance for the primary text of list items.</td></tr>
<tr><td><code>{@link #Theme_textAppearanceListItemSmall lan.wifianalyzer:textAppearanceListItemSmall}</code></td><td> The preferred TextAppearance for the primary text of small list items.</td></tr>
<tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle lan.wifianalyzer:textAppearanceSearchResultSubtitle}</code></td><td> Text color, typeface, size, and style for system search result subtitle.</td></tr>
<tr><td><code>{@link #Theme_textAppearanceSearchResultTitle lan.wifianalyzer:textAppearanceSearchResultTitle}</code></td><td> Text color, typeface, size, and style for system search result title.</td></tr>
<tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu lan.wifianalyzer:textAppearanceSmallPopupMenu}</code></td><td> Text color, typeface, size, and style for small text inside of a popup menu.</td></tr>
<tr><td><code>{@link #Theme_textColorAlertDialogListItem lan.wifianalyzer:textColorAlertDialogListItem}</code></td><td> Color of list item text in alert dialogs.</td></tr>
<tr><td><code>{@link #Theme_textColorSearchUrl lan.wifianalyzer:textColorSearchUrl}</code></td><td> Text color for urls in search suggestions, used by things like global search </td></tr>
<tr><td><code>{@link #Theme_toolbarNavigationButtonStyle lan.wifianalyzer:toolbarNavigationButtonStyle}</code></td><td> Default Toolar NavigationButtonStyle </td></tr>
<tr><td><code>{@link #Theme_toolbarStyle lan.wifianalyzer:toolbarStyle}</code></td><td> Default Toolbar style.</td></tr>
<tr><td><code>{@link #Theme_windowActionBar lan.wifianalyzer:windowActionBar}</code></td><td> Flag indicating whether this window should have an Action Bar
in place of the usual title bar.</td></tr>
<tr><td><code>{@link #Theme_windowActionBarOverlay lan.wifianalyzer:windowActionBarOverlay}</code></td><td> Flag indicating whether this window's Action Bar should overlay
application content.</td></tr>
<tr><td><code>{@link #Theme_windowActionModeOverlay lan.wifianalyzer:windowActionModeOverlay}</code></td><td> Flag indicating whether action modes should overlay window content
when there is not reserved space for their UI (such as an Action Bar).</td></tr>
<tr><td><code>{@link #Theme_windowFixedHeightMajor lan.wifianalyzer:windowFixedHeightMajor}</code></td><td> A fixed height for the window along the major axis of the screen,
that is, when in portrait.</td></tr>
<tr><td><code>{@link #Theme_windowFixedHeightMinor lan.wifianalyzer:windowFixedHeightMinor}</code></td><td> A fixed height for the window along the minor axis of the screen,
that is, when in landscape.</td></tr>
<tr><td><code>{@link #Theme_windowFixedWidthMajor lan.wifianalyzer:windowFixedWidthMajor}</code></td><td> A fixed width for the window along the major axis of the screen,
that is, when in landscape.</td></tr>
<tr><td><code>{@link #Theme_windowFixedWidthMinor lan.wifianalyzer:windowFixedWidthMinor}</code></td><td> A fixed width for the window along the minor axis of the screen,
that is, when in portrait.</td></tr>
<tr><td><code>{@link #Theme_windowMinWidthMajor lan.wifianalyzer:windowMinWidthMajor}</code></td><td> The minimum width the window is allowed to be, along the major
axis of the screen.</td></tr>
<tr><td><code>{@link #Theme_windowMinWidthMinor lan.wifianalyzer:windowMinWidthMinor}</code></td><td> The minimum width the window is allowed to be, along the minor
axis of the screen.</td></tr>
<tr><td><code>{@link #Theme_windowNoTitle lan.wifianalyzer:windowNoTitle}</code></td><td> Flag indicating whether there should be no title on this window.</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, 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, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024,
0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028,
0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c,
0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030,
0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034,
0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038,
0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c,
0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040,
0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044,
0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048,
0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c,
0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050,
0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054,
0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058,
0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c,
0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060,
0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064,
0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068,
0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c,
0x7f01006d, 0x7f01006e
};
/**
<p>
@attr description
Custom divider drawable to use for elements in the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionBarDivider
*/
public static final int Theme_actionBarDivider = 23;
/**
<p>
@attr description
Custom item state list drawable background for action bar items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionBarItemBackground
*/
public static final int Theme_actionBarItemBackground = 24;
/**
<p>
@attr description
Reference to a theme that should be used to inflate popups
shown by widgets in the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionBarPopupTheme
*/
public static final int Theme_actionBarPopupTheme = 17;
/**
<p>
@attr description
Size of the Action Bar, including the contextual
bar used to present Action Modes.
<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>
<p>This is a private symbol.
@attr name lan.wifianalyzer:actionBarSize
*/
public static final int Theme_actionBarSize = 22;
/**
<p>
@attr description
Reference to a style for the split Action Bar. This style
controls the split component that holds the menu/action
buttons. actionBarStyle is still used for the primary
bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionBarSplitStyle
*/
public static final int Theme_actionBarSplitStyle = 19;
/**
<p>
@attr description
Reference to a style for the Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionBarStyle
*/
public static final int Theme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:actionBarTabBarStyle
*/
public static final int Theme_actionBarTabBarStyle = 13;
/**
<p>
@attr description
Default style for tabs within an action bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionBarTabStyle
*/
public static final int Theme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:actionBarTabTextStyle
*/
public static final int Theme_actionBarTabTextStyle = 14;
/**
<p>
@attr description
Reference to a theme that should be used to inflate the
action bar. This will be inherited by any widget inflated
into the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionBarTheme
*/
public static final int Theme_actionBarTheme = 20;
/**
<p>
@attr description
Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionBarWidgetTheme
*/
public static final int Theme_actionBarWidgetTheme = 21;
/**
<p>
@attr description
Default action button style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionButtonStyle
*/
public static final int Theme_actionButtonStyle = 49;
/**
<p>
@attr description
Default ActionBar dropdown style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionDropDownStyle
*/
public static final int Theme_actionDropDownStyle = 45;
/**
<p>
@attr description
TextAppearance style that will be applied to text that
appears within action menu items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionMenuTextAppearance
*/
public static final int Theme_actionMenuTextAppearance = 25;
/**
<p>
@attr description
Color for text that appears within action menu items.
Color for text that appears within action menu items.
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:actionMenuTextColor
*/
public static final int Theme_actionMenuTextColor = 26;
/**
<p>
@attr description
Background drawable to use for action mode UI
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeBackground
*/
public static final int Theme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:actionModeCloseButtonStyle
*/
public static final int Theme_actionModeCloseButtonStyle = 28;
/**
<p>
@attr description
Drawable to use for the close action mode button
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeCloseDrawable
*/
public static final int Theme_actionModeCloseDrawable = 31;
/**
<p>
@attr description
Drawable to use for the Copy action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeCopyDrawable
*/
public static final int Theme_actionModeCopyDrawable = 33;
/**
<p>
@attr description
Drawable to use for the Cut action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeCutDrawable
*/
public static final int Theme_actionModeCutDrawable = 32;
/**
<p>
@attr description
Drawable to use for the Find action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeFindDrawable
*/
public static final int Theme_actionModeFindDrawable = 37;
/**
<p>
@attr description
Drawable to use for the Paste action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModePasteDrawable
*/
public static final int Theme_actionModePasteDrawable = 34;
/**
<p>
@attr description
PopupWindow style to use for action modes when showing as a window overlay.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModePopupWindowStyle
*/
public static final int Theme_actionModePopupWindowStyle = 39;
/**
<p>
@attr description
Drawable to use for the Select all action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeSelectAllDrawable
*/
public static final int Theme_actionModeSelectAllDrawable = 35;
/**
<p>
@attr description
Drawable to use for the Share action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeShareDrawable
*/
public static final int Theme_actionModeShareDrawable = 36;
/**
<p>
@attr description
Background drawable to use for action mode UI in the lower split bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeSplitBackground
*/
public static final int Theme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:actionModeStyle
*/
public static final int Theme_actionModeStyle = 27;
/**
<p>
@attr description
Drawable to use for the Web Search action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:actionModeWebSearchDrawable
*/
public static final int Theme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:actionOverflowButtonStyle
*/
public static final int Theme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:actionOverflowMenuStyle
*/
public static final int Theme_actionOverflowMenuStyle = 16;
/**
<p>
@attr description
Default ActivityChooserView style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:activityChooserViewStyle
*/
public static final int Theme_activityChooserViewStyle = 57;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:alertDialogButtonGroupStyle
*/
public static final int Theme_alertDialogButtonGroupStyle = 92;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:alertDialogCenterButtons
*/
public static final int Theme_alertDialogCenterButtons = 93;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:alertDialogStyle
*/
public static final int Theme_alertDialogStyle = 91;
/**
<p>
@attr description
Theme to use for alert dialogs spawned from this theme.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer: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>
@attr description
Default AutoCompleteTextView style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:autoCompleteTextViewStyle
*/
public static final int Theme_autoCompleteTextViewStyle = 99;
/**
<p>
@attr description
Style for buttons without an explicit border, often used in groups.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:borderlessButtonStyle
*/
public static final int Theme_borderlessButtonStyle = 54;
/**
<p>
@attr description
Style for buttons within button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:buttonBarButtonStyle
*/
public static final int Theme_buttonBarButtonStyle = 51;
/**
<p>
@attr description
Style for the "negative" buttons within button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:buttonBarNegativeButtonStyle
*/
public static final int Theme_buttonBarNegativeButtonStyle = 97;
/**
<p>
@attr description
Style for the "neutral" buttons within button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:buttonBarNeutralButtonStyle
*/
public static final int Theme_buttonBarNeutralButtonStyle = 98;
/**
<p>
@attr description
Style for the "positive" buttons within button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:buttonBarPositiveButtonStyle
*/
public static final int Theme_buttonBarPositiveButtonStyle = 96;
/**
<p>
@attr description
Style for button bars
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:buttonBarStyle
*/
public static final int Theme_buttonBarStyle = 50;
/**
<p>
@attr description
Normal Button style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:buttonStyle
*/
public static final int Theme_buttonStyle = 100;
/**
<p>
@attr description
Small Button style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:buttonStyleSmall
*/
public static final int Theme_buttonStyleSmall = 101;
/**
<p>
@attr description
Default Checkbox style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:checkboxStyle
*/
public static final int Theme_checkboxStyle = 102;
/**
<p>
@attr description
Default CheckedTextView style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:checkedTextViewStyle
*/
public static final int Theme_checkedTextViewStyle = 103;
/**
<p>
@attr description
Bright complement to the primary branding color. By default, this is the color applied
to framework controls (via colorControlActivated).
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:colorAccent
*/
public static final int Theme_colorAccent = 84;
/**
<p>
@attr description
The color applied to framework buttons in their normal state.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:colorButtonNormal
*/
public static final int Theme_colorButtonNormal = 88;
/**
<p>
@attr description
The color applied to framework controls in their activated (ex. checked) state.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:colorControlActivated
*/
public static final int Theme_colorControlActivated = 86;
/**
<p>
@attr description
The color applied to framework control highlights (ex. ripples, list selectors).
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:colorControlHighlight
*/
public static final int Theme_colorControlHighlight = 87;
/**
<p>
@attr description
The color applied to framework controls in their normal state.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:colorControlNormal
*/
public static final int Theme_colorControlNormal = 85;
/**
<p>
@attr description
The primary branding color for the app. By default, this is the color applied to the
action bar background.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:colorPrimary
*/
public static final int Theme_colorPrimary = 82;
/**
<p>
@attr description
Dark variant of the primary branding color. By default, this is the color applied to
the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:colorPrimaryDark
*/
public static final int Theme_colorPrimaryDark = 83;
/**
<p>
@attr description
The color applied to framework switch thumbs in their normal state.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:colorSwitchThumbNormal
*/
public static final int Theme_colorSwitchThumbNormal = 89;
/**
<p>
@attr description
The background used by framework controls.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:controlBackground
*/
public static final int Theme_controlBackground = 90;
/**
<p>
@attr description
Preferred padding for dialog content.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:dialogPreferredPadding
*/
public static final int Theme_dialogPreferredPadding = 43;
/**
<p>
@attr description
Theme to use for dialogs spawned from this theme.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:dialogTheme
*/
public static final int Theme_dialogTheme = 42;
/**
<p>
@attr description
A drawable that may be used as a horizontal divider between visual elements.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:dividerHorizontal
*/
public static final int Theme_dividerHorizontal = 56;
/**
<p>
@attr description
A drawable that may be used as a vertical divider between visual elements.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:dividerVertical
*/
public static final int Theme_dividerVertical = 55;
/**
<p>
@attr description
ListPopupWindow compatibility
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:dropDownListViewStyle
*/
public static final int Theme_dropDownListViewStyle = 74;
/**
<p>
@attr description
The preferred item height for dropdown lists.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:dropdownListPreferredItemHeight
*/
public static final int Theme_dropdownListPreferredItemHeight = 46;
/**
<p>
@attr description
EditText background drawable.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:editTextBackground
*/
public static final int Theme_editTextBackground = 63;
/**
<p>
@attr description
EditText text foreground color.
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:editTextColor
*/
public static final int Theme_editTextColor = 62;
/**
<p>
@attr description
Default EditText style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:editTextStyle
*/
public static final int Theme_editTextStyle = 104;
/**
<p>
@attr description
Specifies a drawable to use for the 'home as up' indicator.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:homeAsUpIndicator
*/
public static final int Theme_homeAsUpIndicator = 48;
/**
<p>
@attr description
ImageButton background drawable.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:imageButtonStyle
*/
public static final int Theme_imageButtonStyle = 64;
/**
<p>
@attr description
Drawable used as a background for selected list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:listChoiceBackgroundIndicator
*/
public static final int Theme_listChoiceBackgroundIndicator = 81;
/**
<p>
@attr description
The list divider used in alert dialogs.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:listDividerAlertDialog
*/
public static final int Theme_listDividerAlertDialog = 44;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:listPopupWindowStyle
*/
public static final int Theme_listPopupWindowStyle = 75;
/**
<p>
@attr description
The preferred list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:listPreferredItemHeight
*/
public static final int Theme_listPreferredItemHeight = 69;
/**
<p>
@attr description
A larger, more robust list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:listPreferredItemHeightLarge
*/
public static final int Theme_listPreferredItemHeightLarge = 71;
/**
<p>
@attr description
A smaller, sleeker list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:listPreferredItemHeightSmall
*/
public static final int Theme_listPreferredItemHeightSmall = 70;
/**
<p>
@attr description
The preferred padding along the left edge of list items.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:listPreferredItemPaddingLeft
*/
public static final int Theme_listPreferredItemPaddingLeft = 72;
/**
<p>
@attr description
The preferred padding along the right edge of list items.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:listPreferredItemPaddingRight
*/
public static final int Theme_listPreferredItemPaddingRight = 73;
/**
<p>
@attr description
The background of a panel when it is inset from the left and right edges of the screen.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:panelBackground
*/
public static final int Theme_panelBackground = 78;
/**
<p>
@attr description
Default Panel Menu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:panelMenuListTheme
*/
public static final int Theme_panelMenuListTheme = 80;
/**
<p>
@attr description
Default Panel Menu width.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:panelMenuListWidth
*/
public static final int Theme_panelMenuListWidth = 79;
/**
<p>
@attr description
Default PopupMenu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:popupMenuStyle
*/
public static final int Theme_popupMenuStyle = 60;
/**
<p>
@attr description
Default PopupWindow style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:popupWindowStyle
*/
public static final int Theme_popupWindowStyle = 61;
/**
<p>
@attr description
Default RadioButton style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:radioButtonStyle
*/
public static final int Theme_radioButtonStyle = 105;
/**
<p>
@attr description
Default RatingBar style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:ratingBarStyle
*/
public static final int Theme_ratingBarStyle = 106;
/**
<p>
@attr description
Style for the search query widget.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:searchViewStyle
*/
public static final int Theme_searchViewStyle = 68;
/**
<p>
@attr description
Default SeekBar style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:seekBarStyle
*/
public static final int Theme_seekBarStyle = 107;
/**
<p>
@attr description
A style that may be applied to buttons or other selectable items
that should react to pressed and focus states, but that do not
have a clear visual border along the edges.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:selectableItemBackground
*/
public static final int Theme_selectableItemBackground = 52;
/**
<p>
@attr description
Background drawable for borderless standalone items that need focus/pressed states.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:selectableItemBackgroundBorderless
*/
public static final int Theme_selectableItemBackgroundBorderless = 53;
/**
<p>
@attr description
Default Spinner style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:spinnerDropDownItemStyle
*/
public static final int Theme_spinnerDropDownItemStyle = 47;
/**
<p>
@attr description
Default Spinner style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:spinnerStyle
*/
public static final int Theme_spinnerStyle = 108;
/**
<p>
@attr description
Default style for the Switch widget.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:switchStyle
*/
public static final int Theme_switchStyle = 109;
/**
<p>
@attr description
Text color, typeface, size, and style for the text inside of a popup menu.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:textAppearanceLargePopupMenu
*/
public static final int Theme_textAppearanceLargePopupMenu = 40;
/**
<p>
@attr description
The preferred TextAppearance for the primary text of list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:textAppearanceListItem
*/
public static final int Theme_textAppearanceListItem = 76;
/**
<p>
@attr description
The preferred TextAppearance for the primary text of small list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:textAppearanceListItemSmall
*/
public static final int Theme_textAppearanceListItemSmall = 77;
/**
<p>
@attr description
Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:textAppearanceSearchResultSubtitle
*/
public static final int Theme_textAppearanceSearchResultSubtitle = 66;
/**
<p>
@attr description
Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:textAppearanceSearchResultTitle
*/
public static final int Theme_textAppearanceSearchResultTitle = 65;
/**
<p>
@attr description
Text color, typeface, size, and style for small text inside of a popup menu.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:textAppearanceSmallPopupMenu
*/
public static final int Theme_textAppearanceSmallPopupMenu = 41;
/**
<p>
@attr description
Color of list item text in alert dialogs.
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:textColorAlertDialogListItem
*/
public static final int Theme_textColorAlertDialogListItem = 95;
/**
<p>
@attr description
Text color for urls in search suggestions, used by things like global search
<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>".
<p>This is a private symbol.
@attr name lan.wifianalyzer:textColorSearchUrl
*/
public static final int Theme_textColorSearchUrl = 67;
/**
<p>
@attr description
Default Toolar NavigationButtonStyle
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:toolbarNavigationButtonStyle
*/
public static final int Theme_toolbarNavigationButtonStyle = 59;
/**
<p>
@attr description
Default Toolbar style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:toolbarStyle
*/
public static final int Theme_toolbarStyle = 58;
/**
<p>
@attr description
Flag indicating whether this window should have an Action Bar
in place of the usual title bar.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowActionBar
*/
public static final int Theme_windowActionBar = 2;
/**
<p>
@attr description
Flag indicating whether this window's Action Bar should overlay
application content. Does nothing if the window would not
have an Action Bar.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowActionBarOverlay
*/
public static final int Theme_windowActionBarOverlay = 4;
/**
<p>
@attr description
Flag indicating whether action modes should overlay window content
when there is not reserved space for their UI (such as an Action Bar).
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowActionModeOverlay
*/
public static final int Theme_windowActionModeOverlay = 5;
/**
<p>
@attr description
A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowFixedHeightMajor
*/
public static final int Theme_windowFixedHeightMajor = 9;
/**
<p>
@attr description
A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowFixedHeightMinor
*/
public static final int Theme_windowFixedHeightMinor = 7;
/**
<p>
@attr description
A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowFixedWidthMajor
*/
public static final int Theme_windowFixedWidthMajor = 6;
/**
<p>
@attr description
A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowFixedWidthMinor
*/
public static final int Theme_windowFixedWidthMinor = 8;
/**
<p>
@attr description
The minimum width the window is allowed to be, along the major
axis of the screen. That is, when in landscape. Can be either
an absolute dimension or a fraction of the screen size in that
dimension.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowMinWidthMajor
*/
public static final int Theme_windowMinWidthMajor = 10;
/**
<p>
@attr description
The minimum width the window is allowed to be, along the minor
axis of the screen. That is, when in portrait. Can be either
an absolute dimension or a fraction of the screen size in that
dimension.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:windowMinWidthMinor
*/
public static final int Theme_windowMinWidthMinor = 11;
/**
<p>
@attr description
Flag indicating whether there should be no title on this window.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer: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> Allows us to read in the minHeight attr pre-v16 </td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription lan.wifianalyzer:collapseContentDescription}</code></td><td> Text to set as the content description for the collapse button.</td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon lan.wifianalyzer:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd lan.wifianalyzer:contentInsetEnd}</code></td><td> Minimum inset for content views within a bar.</td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft lan.wifianalyzer:contentInsetLeft}</code></td><td> Minimum inset for content views within a bar.</td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight lan.wifianalyzer:contentInsetRight}</code></td><td> Minimum inset for content views within a bar.</td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart lan.wifianalyzer:contentInsetStart}</code></td><td> Minimum inset for content views within a bar.</td></tr>
<tr><td><code>{@link #Toolbar_logo lan.wifianalyzer:logo}</code></td><td> Drawable to set as the logo that appears at the starting side of
the Toolbar, just after the navigation button.</td></tr>
<tr><td><code>{@link #Toolbar_logoDescription lan.wifianalyzer:logoDescription}</code></td><td> A content description string to describe the appearance of the
associated logo image.</td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight lan.wifianalyzer:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription lan.wifianalyzer:navigationContentDescription}</code></td><td> Text to set as the content description for the navigation button
located at the start of the toolbar.</td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon lan.wifianalyzer:navigationIcon}</code></td><td> Icon drawable to use for the navigation button located at
the start of the toolbar.</td></tr>
<tr><td><code>{@link #Toolbar_popupTheme lan.wifianalyzer:popupTheme}</code></td><td> Reference to a theme that should be used to inflate popups
shown by widgets in the toolbar.</td></tr>
<tr><td><code>{@link #Toolbar_subtitle lan.wifianalyzer:subtitle}</code></td><td> Specifies subtitle text used for navigationMode="normal" </td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance lan.wifianalyzer:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor lan.wifianalyzer:subtitleTextColor}</code></td><td> A color to apply to the subtitle string.</td></tr>
<tr><td><code>{@link #Toolbar_title lan.wifianalyzer:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom lan.wifianalyzer:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd lan.wifianalyzer:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart lan.wifianalyzer:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop lan.wifianalyzer:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins lan.wifianalyzer:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance lan.wifianalyzer:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor lan.wifianalyzer:titleTextColor}</code></td><td> A color to apply to the title string.</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, 0x7f010000, 0x7f010071,
0x7f010075, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010086, 0x7f0100a5, 0x7f0100a6,
0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa,
0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae,
0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2,
0x7f0100b3
};
/**
<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>
@attr description
Allows us to read in the minHeight attr pre-v16
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#minHeight}.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>
@attr description
Text to set as the content description for the collapse button.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 19;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:collapseIcon
*/
public static final int Toolbar_collapseIcon = 18;
/**
<p>
@attr description
Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>
@attr description
Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>
@attr description
Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>
@attr description
Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>
@attr description
Drawable to set as the logo that appears at the starting side of
the Toolbar, just after the navigation button.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>
@attr description
A content description string to describe the appearance of the
associated logo image.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:logoDescription
*/
public static final int Toolbar_logoDescription = 22;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 17;
/**
<p>
@attr description
Text to set as the content description for the navigation button
located at the start of the toolbar.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 21;
/**
<p>
@attr description
Icon drawable to use for the navigation button located at
the start of the toolbar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:navigationIcon
*/
public static final int Toolbar_navigationIcon = 20;
/**
<p>
@attr description
Reference to a theme that should be used to inflate popups
shown by widgets in the toolbar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer:popupTheme
*/
public static final int Toolbar_popupTheme = 9;
/**
<p>
@attr description
Specifies subtitle text used for navigationMode="normal"
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 11;
/**
<p>
@attr description
A color to apply to the subtitle string.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 24;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 16;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 14;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 13;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 15;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:titleMargins
*/
public static final int Toolbar_titleMargins = 12;
/**
<p>This symbol is the offset where the {@link lan.wifianalyzer.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 lan.wifianalyzer:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 10;
/**
<p>
@attr description
A color to apply to the title string.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer: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> Boolean that controls whether a view can take focus.</td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td> Specifies a theme override for a view.</td></tr>
<tr><td><code>{@link #View_paddingEnd lan.wifianalyzer:paddingEnd}</code></td><td> Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr>
<tr><td><code>{@link #View_paddingStart lan.wifianalyzer:paddingStart}</code></td><td> Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr>
<tr><td><code>{@link #View_theme lan.wifianalyzer:theme}</code></td><td> Deprecated.</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, 0x7f010088, 0x7f010089,
0x7f01008a
};
/**
<p>
@attr description
Boolean that controls whether a view can take focus. By default the user can not
move focus to a view; by setting this attribute to true the view is
allowed to take focus. This value does not impact the behavior of
directly calling {@link android.view.View#requestFocus}, which will
always request focus regardless of this view. It only impacts where
focus navigation will try to move focus.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#focusable}.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>
@attr description
Specifies a theme override for a view. When a theme override is set, the
view will be inflated using a {@link android.content.Context} themed with
the specified resource.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#theme}.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>
@attr description
Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>
@attr description
Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name lan.wifianalyzer:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>
@attr description
Deprecated.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name lan.wifianalyzer: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 lan.wifianalyzer:backgroundTint}</code></td><td> Tint to apply to the background.</td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode lan.wifianalyzer:backgroundTintMode}</code></td><td> Blending mode used to apply the background tint.</td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f01008b, 0x7f01008c
};
/**
<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>
@attr description
Tint to apply to the background.
<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.
<p>This is a private symbol.
@attr name lan.wifianalyzer:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>
@attr description
Blending mode used to apply the background tint.
<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> The tint is drawn on top of the drawable.
[Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr>
<tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s
color channels are thrown out. [Sa * Da, Sc * Da] </td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha
channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr>
<tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of
the tint. [Sa * Da, Sc * Dc] </td></tr>
<tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr>
</table>
<p>This is a private symbol.
@attr name lan.wifianalyzer: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> Overrides the id of the inflated View with this value.</td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td> Supply an identifier for the layout resource to inflate when the ViewStub
becomes visible or when forced to do so.</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>
@attr description
Overrides the id of the inflated View with this value.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#inflatedId}.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>
@attr description
Supply an identifier for the layout resource to inflate when the ViewStub
becomes visible or when forced to do so. The layout resource must be a
valid reference to a layout.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#layout}.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
|
[
"[email protected]"
] | |
ed739f5632bbe863cde6fab0e6b999151e7b3bdf
|
67ade21eeb058bce1e274c0b563fab0d5a7f3f48
|
/roma-mail/src/main/java/org/romaframework/module/mail/javamail/JavaMailAbstract.java
|
8c6409e39a055a2a42b3794e65e1f678732f2a4d
|
[] |
no_license
|
romaframework/romaframework
|
97d1199a50666953f6fd2f14954ae65a8b3726c9
|
c8e69e41cc9a1192dc5490f17a2be5b8f43b6f70
|
refs/heads/master
| 2020-12-24T14:57:30.037357 | 2013-03-05T10:39:08 | 2013-03-05T10:39:08 | 7,053,619 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 10,456 |
java
|
/*
* Copyright 2006 - 2009 Paolo Spizzirri (paolo.spizzirri--at--assetdata.it)
*
* 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.
*
*/
/**
* author: Paolo Spizzirri
*
* Specific implementation of the Mail Aspect using the SUN Javamail package
*/
package org.romaframework.module.mail.javamail;
import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.Message.RecipientType;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import javax.mail.util.ByteArrayDataSource;
import org.romaframework.core.Roma;
import org.romaframework.module.mail.MailException;
public abstract class JavaMailAbstract {
private static final String SMTP_HOST = "mail.smtp.host";
private static final String SMTP_AUTHORIZATION = "mail.smtp.auth";
private static final String SMTP_HOST_UNKNOWN = "Unknown SMTP host";
private static final Object SMTP_PORT = "mail.smtp.port";
private static final Object POP3_PORT = "mail.pop3.port";
private static final Object IMAP_PORT = "mail.imap.port";
protected MimeMessage message = null;
protected MimeMultipart mmp = null;
public void sendMail(String subject, String text, String from, Object to, List<String> cc, List<String> bcc,
List<String> attachments, String authentication) {
sendMail(subject, text, from, to, cc, bcc, attachments, authentication, true);
}
/**
*
* @param subject
* @param text
* @param from
* @param to
* @param cc
* @param bcc
* @param attachments
* @param defaultAuthentication
*/
public void sendMail(String subject, String text, String from, Object to, List<String> cc, List<String> bcc,
List<String> attachments, String authentication, boolean silent) {
try {
inizializeContainer(authentication);
MailHelper.setFromRecipient(message, from);
MailHelper.setRecipients(message, to, RecipientType.TO);
MailHelper.setRecipients(message, cc, RecipientType.CC);
MailHelper.setRecipients(message, bcc, RecipientType.BCC);
message.setSubject(subject);
setText(text);
setAttachments(attachments);
message.setContent(mmp);
Transport.send(message);
} catch (MessagingException mse) {
if (!silent) {
throw new MailException(mse);
}
if (mse.getMessage().contains(SMTP_HOST_UNKNOWN)) {
throw new MailException(SMTP_HOST_UNKNOWN);
} else {
mse.printStackTrace();
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
public void sendMail(String subject, String text, String from, Object to, List<String> cc, List<String> bcc,
String authentication, List<? extends AttachmentElement> attachments) {
sendMail(subject, text, from, to, cc, bcc, authentication, attachments, true);
}
@SuppressWarnings("rawtypes")
public void sendMail(String subject, String text, String from, Object to, List<String> cc, List<String> bcc,
String authentication, List<? extends AttachmentElement> attachments, boolean silent) {
try {
inizializeContainer(authentication);
MailHelper.setFromRecipient(message, from);
MailHelper.setRecipients(message, to, RecipientType.TO);
MailHelper.setRecipients(message, cc, RecipientType.CC);
MailHelper.setRecipients(message, bcc, RecipientType.BCC);
message.setSubject(subject);
setText(text);
setAttachmentsElements(attachments);
message.setContent(mmp);
Transport.send(message);
} catch (MessagingException mse) {
if (!silent) {
throw new MailException(mse);
}
if (mse.getMessage().contains(SMTP_HOST_UNKNOWN)) {
throw new MailException(SMTP_HOST_UNKNOWN);
} else {
mse.printStackTrace();
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
/**
*
* @param subject
* @param text
* @param from
* @param to
* @param defaultAuthentication
*/
public void sendMail(String subject, String text, String from, Object to, String authentication) {
sendMail(subject, text, from, to, null, null, null, authentication, true);
}
public void sendMail(String subject, String text, String from, Object to, String authentication, boolean silent) {
sendMail(subject, text, from, to, null, null, null, authentication, silent);
}
/**
*
* @param subject
* @param text
* @param from
* @param to
* @param attachements
* @param defaultAuthentication
*/
public void sendMail(String subject, String text, String from, List<String> to, List<String> attachments, String authentication) {
sendMail(subject, text, from, to, null, null, attachments, authentication, true);
}
/**
*
* @param subject
* @param text
* @param from
* @param to
* @param attachments
* @param authentication
* @param silent
* if true does not throw exception
*/
public void sendMail(String subject, String text, String from, List<String> to, List<String> attachments, String authentication,
boolean silent) {
sendMail(subject, text, from, to, null, null, attachments, authentication, silent);
}
@SuppressWarnings("rawtypes")
public void sendMail(String subject, String text, String from, List<String> to, String authentication,
List<? extends AttachmentElement> attachments) {
sendMail(subject, text, from, to, null, null, authentication, attachments);
}
@SuppressWarnings("rawtypes")
public void sendMail(String subject, String text, String from, List<String> to, String authentication,
List<? extends AttachmentElement> attachments, boolean silent) {
sendMail(subject, text, from, to, null, null, authentication, attachments, silent);
}
/**
*
* @param subject
* @param text
* @param from
* @param to
* @param cc
* @param attachements
* @param defaultAuthentication
*/
public void sendMail(String subject, String text, String from, List<String> to, List<String> cc, List<String> attachements,
String authentication) {
sendMail(subject, text, from, to, cc, null, attachements, authentication);
}
public void sendMail(String subject, String text, String from, List<String> to, List<String> cc, List<String> attachements,
String authentication, boolean silent) {
sendMail(subject, text, from, to, cc, null, attachements, authentication, silent);
}
/**
*
* @param msg
* @throws MailException
*/
public void sendMail(MimeMessage msg) {
try {
Transport.send(msg);
} catch (MessagingException mse) {
}
}
/**
*
* @param defaultAuthentication
*/
protected void inizializeContainer(String authenticationKey) {
ServerConfiguration configuration = Roma.component("ServerConfiguration");
Session session = null;
Properties props = new Properties();
props.put(SMTP_HOST, configuration.getSmtp());
if (configuration.getSmtpPort() != null) {
props.put(SMTP_PORT, configuration.getSmtpPort());
}
if (configuration.getPop3Port() != null) {
props.put(POP3_PORT, configuration.getPop3Port());
}
if (configuration.getImapPort() != null) {
props.put(IMAP_PORT, configuration.getImapPort());
}
if (authenticationKey != null) {
Authentication authentication = configuration.getAuthentications().get(authenticationKey);
if (authentication.getUserid() == null && authentication.getPassword() == null) {
session = Session.getDefaultInstance(props);
} else {
SMTPAuthenticator authenticator = new SMTPAuthenticator(authentication.getUserid(), authentication.getPassword());
props.put(SMTP_AUTHORIZATION, true);
session = Session.getDefaultInstance(props, authenticator);
}
} else {
session = Session.getDefaultInstance(props);
}
session.setDebug(configuration.getDebug());
message = new MimeMessage(session);
mmp = new MimeMultipart();
}
/**
* This method is responsible to add file attachments, if exist, to the email container
*
* @param attachments
* List of File
* @throws MessagingException
* @throws IOException
*/
protected void setAttachments(List<String> attachments) throws MessagingException, IOException {
MimeBodyPart mbp = null;
File file = null;
if (attachments != null) {
for (String attachment : attachments) {
file = new File(attachment);
DataSource source = new FileDataSource(file);
mbp = new MimeBodyPart();
mbp.setDataHandler(new DataHandler(source));
mbp.setFileName(file.getName());
mmp.addBodyPart(mbp);
}
}
}
@SuppressWarnings("rawtypes")
protected void setAttachmentsElements(List<? extends AttachmentElement> attachments) throws MessagingException, IOException {
if (attachments != null) {
for (AttachmentElement element : attachments)
if (element instanceof FileAttachmentElement) {
setFileAttachment((FileAttachmentElement) element);
} else if (element instanceof ByteArrayAttachmentElement) {
setByteArrayAttachment((ByteArrayAttachmentElement) element);
}
}
}
protected void setByteArrayAttachment(ByteArrayAttachmentElement attachment) throws MessagingException, IOException {
MimeBodyPart mbp = null;
DataSource source = new ByteArrayDataSource(attachment.getFile(), attachment.getMimeType());
mbp = new MimeBodyPart();
mbp.setDataHandler(new DataHandler(source));
mbp.setFileName(attachment.getFileName());
mmp.addBodyPart(mbp);
}
protected void setFileAttachment(FileAttachmentElement attachment) throws MessagingException, IOException {
MimeBodyPart mbp = null;
DataSource source = new FileDataSource(attachment.getFile());
mbp = new MimeBodyPart();
mbp.setDataHandler(new DataHandler(source));
mbp.setFileName(attachment.getFileName());
mmp.addBodyPart(mbp);
}
protected abstract void setText(String text) throws MessagingException;
}
|
[
"maggiolo00@localhost.(none)"
] |
maggiolo00@localhost.(none)
|
eafd9f6fb5648d6ae5bc68af5475622fd77e3f99
|
096e165504c508f93a4ed02c495bf6a7304681ba
|
/level03/lesson06/task04/Solution.java
|
1480470538a82ac9888099863d0cbb4c5e91cd6d
|
[] |
no_license
|
aranadan/jr
|
424d502a4af469fd8336b0b09c0a24169217dd8a
|
fefb8cd3a982ae3229cab89c6e644b6deca5502c
|
refs/heads/master
| 2021-05-03T10:03:37.786644 | 2017-12-23T16:06:13 | 2017-12-23T16:06:13 | 64,114,433 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 618 |
java
|
package com.javarush.test.level03.lesson06.task04;
/* Экранирование символов
Про экранирование символов в Java читайте в дополнительном материале к лекции.
Вывести на экран следующий текст - две строки:
It's Windows path: "C:\Program Files\Java\jdk1.7.0\bin"
It's Java string: \"C:\\Program Files\\Java\\jdk1.7.0\\bin\"
*/
public class Solution
{
public static void main(String[] args)
{
//напишите тут ваш код
System.out.print("Hello World!");
}
}
|
[
"stalker45"
] |
stalker45
|
353db8f8a546ebc746ba63e8ca17d37c37362cf0
|
0c28a12d3efa7ef425a8dd8f829b6521e0c8f6f5
|
/src/results/bugged/Dataset3/1455.txt
|
0e0f9f02a6077df8dff35f203b5e4a7534aaf718
|
[
"Apache-2.0"
] |
permissive
|
bsse1017kavi/Dissection-of-CodeRep
|
8408b80be8104f3642a99ee50deca5b2d9914524
|
a4b09622e1082e2df9683f549f2e26351a440b1a
|
refs/heads/master
| 2022-01-15T11:29:16.391603 | 2019-07-06T09:25:11 | 2019-07-06T09:25:11 | 195,090,051 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 6,565 |
txt
|
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.as.weld.deployment.processors;
import org.jboss.as.ee.component.ComponentConfiguration;
import org.jboss.as.ee.component.ComponentConfigurator;
import org.jboss.as.ee.component.ComponentDescription;
import org.jboss.as.ee.component.DependencyConfigurator;
import org.jboss.as.ee.component.EEModuleClassConfiguration;
import org.jboss.as.ee.component.EEModuleConfiguration;
import org.jboss.as.ee.component.EEModuleDescription;
import org.jboss.as.ee.component.InterceptorDescription;
import org.jboss.as.ejb3.component.session.SessionBeanComponentDescription;
import org.jboss.as.server.deployment.Attachments;
import org.jboss.as.server.deployment.DeploymentPhaseContext;
import org.jboss.as.server.deployment.DeploymentUnit;
import org.jboss.as.server.deployment.DeploymentUnitProcessingException;
import org.jboss.as.server.deployment.DeploymentUnitProcessor;
import org.jboss.as.weld.WeldDeploymentMarker;
import org.jboss.as.weld.injection.WeldInjectionInterceptor;
import org.jboss.as.weld.injection.WeldManagedReferenceFactory;
import org.jboss.as.weld.services.BeanManagerService;
import org.jboss.modules.ModuleClassLoader;
import org.jboss.msc.service.ServiceBuilder;
import org.jboss.msc.service.ServiceName;
import org.jboss.msc.service.ServiceTarget;
import org.jboss.weld.manager.BeanManagerImpl;
import java.util.HashSet;
import java.util.Set;
/**
* Deployment unit processor that add the {@link org.jboss.as.weld.injection.WeldManagedReferenceFactory} instantiator
* to components that are part of a bean archive.
*
* @author Stuart Douglas
*/
public class WeldComponentIntegrationProcessor implements DeploymentUnitProcessor {
@Override
public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
if (!WeldDeploymentMarker.isWeldDeployment(deploymentUnit)) {
return;
}
final EEModuleDescription eeModuleDescription = deploymentUnit.getAttachment(org.jboss.as.ee.component.Attachments.EE_MODULE_DESCRIPTION);
final ServiceName beanManagerServiceName = BeanManagerService.serviceName(deploymentUnit);
for (ComponentDescription component : eeModuleDescription.getComponentDescriptions()) {
final String beanName;
if (component instanceof SessionBeanComponentDescription) {
beanName = component.getComponentName();
} else {
beanName = null;
}
component.getConfigurators().addFirst(new ComponentConfigurator() {
@Override
public void configure(final DeploymentPhaseContext context, final ComponentDescription description, final ComponentConfiguration configuration) throws DeploymentUnitProcessingException {
final Class<?> componentClass = configuration.getModuleClassConfiguration().getModuleClass();
final EEModuleConfiguration module = configuration.getModuleClassConfiguration().getModuleConfiguration();
final ModuleClassLoader classLoader = deploymentUnit.getAttachment(Attachments.MODULE).getClassLoader();
//get the interceptors so they can be injected as well
final Set<Class<?>> interceptorClasses = new HashSet<Class<?>>();
for (InterceptorDescription interceptorDescription : description.getAllInterceptors().values()) {
EEModuleClassConfiguration clazz = module.getClassConfiguration(interceptorDescription.getInterceptorClassName());
if (clazz != null) {
interceptorClasses.add(clazz.getModuleClass());
}
}
addWeldInstantiator(context.getServiceTarget(), configuration, componentClass, beanName, deploymentUnit.getServiceName(), beanManagerServiceName, interceptorClasses, classLoader);
configuration.getPostConstructInterceptors().addLast(new WeldInjectionInterceptor.Factory(configuration, interceptorClasses));
}
});
}
}
/**
* As the weld based instantiator needs access to the bean manager it is installed as a service.
*/
private void addWeldInstantiator(final ServiceTarget target, final ComponentConfiguration configuration, final Class<?> componentClass, final String beanName, final ServiceName deploymentServiceName, final ServiceName beanManagerServiceName, final Set<Class<?>> interceptorClasses, final ClassLoader classLoader) {
final ServiceName serviceName = configuration.getComponentDescription().getServiceName().append("WeldInstantiator");
final WeldManagedReferenceFactory factory = new WeldManagedReferenceFactory(componentClass, beanName, interceptorClasses, classLoader);
target.addService(serviceName, factory)
.addDependency(beanManagerServiceName, BeanManagerImpl.class, factory.getBeanManager())
.install();
configuration.setInstanceFactory(factory);
configuration.getStartDependencies().add(new DependencyConfigurator() {
@Override
public void configureDependency(final ServiceBuilder<?> serviceBuilder) throws DeploymentUnitProcessingException {
serviceBuilder.addDependency(serviceName);
}
});
}
@Override
public void undeploy(DeploymentUnit context) {
}
}
|
[
"[email protected]"
] | |
f6dbd3f677f4d8cf6cb1de8f2529346fb1ae7b0f
|
4305cc43cf5f13c1d7c7d7ca687bd73b4361d276
|
/com.ias.webide.plugin/src/com/ias/webide/plugin/util/XMLDomParser.java
|
1cb3d6561ed7a39dd2dd6c62c3ea8f8de22a5df6
|
[] |
no_license
|
jchardis2/WebIDE
|
b8dbceca287d5a63b1f26d94e41474fd7b7acf1f
|
f4c45b4b8fb0d5a39ba0f7fd2675556cedec2d4b
|
refs/heads/master
| 2016-09-06T04:14:55.602328 | 2014-09-18T20:38:12 | 2014-09-18T20:38:12 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 753 |
java
|
package com.ias.webide.plugin.util;
import java.io.File;
import java.io.IOException;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.dom.Document;
import org.xml.sax.SAXException;
public class XMLDomParser {
private File xmlFile;
DocumentBuilderFactory dbFactory;
DocumentBuilder dBuilder;
Document doc;
public XMLDomParser() {
}
public void init(File xmlFile) throws ParserConfigurationException, SAXException, IOException {
this.xmlFile = xmlFile;
dbFactory = DocumentBuilderFactory.newInstance();
dBuilder = dbFactory.newDocumentBuilder();
doc = dBuilder.parse(xmlFile);
doc.getDocumentElement().normalize();
}
}
|
[
"[email protected]"
] | |
63a8872dab672cb775b0d9c54cb22a1de263dce2
|
c90038d7189e23976417ed89b0f9105b141b5d93
|
/algorithm/src/main/java/com/wzj/test/algorithm/MaximumProductOfWordLengths_318.java
|
d91eef58444c1fe2f7dc2031abdc6f3545435780
|
[] |
no_license
|
datua/test
|
ae817d9945535293094059e452b2589bcbd04daa
|
fc029f4910e078193860d7e23aab89c464d9c0c4
|
refs/heads/master
| 2021-01-17T11:37:15.514122 | 2019-07-12T14:33:10 | 2019-07-12T14:33:10 | 41,493,574 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,445 |
java
|
package com.wzj.test.algorithm;
public class MaximumProductOfWordLengths_318 {
public int maxProduct(String[] words) {
int result = 0;
if (null == words || 0 == words.length) {
return result;
}
int[] values = new int[words.length];
int count = 0;
for (String word : words) {
int value = 0;
for (int i = 0; i < word.length(); i++) {
value |= 1 << (word.charAt(i) - 'a');
}
values[count] = value;
count++;
}
for (int i = 0; i < words.length; i++) {
for (int j = i + 1; j <words.length; j++) {
if ((values[i] & values[j]) == 0 && (words[i].length() * words[j].length() > result)) {
result = words[i].length() * words[j].length();
}
}
}
return result;
}
public static void main(String[] args) {
String[] words = {"abcw","baz","foo","bar","xtfn","abcdef"};
// 16
System.out.println(new MaximumProductOfWordLengths_318().maxProduct(words));
words = new String[]{"a","ab","abc","d","cd","bcd","abcd"};
// 4
System.out.println(new MaximumProductOfWordLengths_318().maxProduct(words));
words = new String[]{"a","aa","aaa","aaaa"};
// 0
System.out.println(new MaximumProductOfWordLengths_318().maxProduct(words));
}
}
|
[
"[email protected]"
] | |
e80857e6da556ddc150631efb3429f54adc4d7c2
|
e9045e5fa2457a301fa0401d040b0aafb218f9ad
|
/src/edu/stanford/smi/protegex/owl/inference/dig/exception/DIGErrorException.java
|
65e2eb3d3dc4ddb001686d65383cfea8d77b4f5c
|
[] |
no_license
|
ubbdst/protege-owl-plugin
|
8441c5b3c04b37d6e76227c206a4ce9953d65992
|
55bf58bbeea18349581aae8883da25587b0adb6a
|
refs/heads/master
| 2021-06-05T11:38:14.123125 | 2019-04-03T10:59:21 | 2019-04-03T10:59:21 | 83,047,190 | 1 | 0 | null | 2019-04-03T10:47:48 | 2017-02-24T14:04:41 |
Java
|
UTF-8
|
Java
| false | false | 2,704 |
java
|
/*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
*
* The Original Code is Protege-2000.
*
* The Initial Developer of the Original Code is Stanford University. Portions
* created by Stanford University are Copyright (C) 2007. All Rights Reserved.
*
* Protege was developed by Stanford Medical Informatics
* (http://www.smi.stanford.edu) at the Stanford University School of Medicine
* with support from the National Library of Medicine, the National Science
* Foundation, and the Defense Advanced Research Projects Agency. Current
* information about Protege can be obtained at http://protege.stanford.edu.
*
*/
package edu.stanford.smi.protegex.owl.inference.dig.exception;
import java.util.ArrayList;
import java.util.Collection;
/**
* User: matthewhorridge<br>
* The Univeristy Of Manchester<br>
* Medical Informatics Group<br>
* Date: Jun 14, 2004<br><br>
* <p/>
* [email protected]<br>
* www.cs.man.ac.uk/~horridgm<br><br>
*/
public class DIGErrorException extends DIGReasonerException {
private ArrayList errorList;
public DIGErrorException(ArrayList errorList) {
super(((DIGError) (errorList.get(0))).getMessage());
this.errorList = errorList;
}
/**
* Gets the exception code associated with this
* DIGErrorException
*
* @return An integer exception code.
*/
public int getErrorCode(int index) {
return ((DIGError) errorList.get(index)).getErrorCode();
}
/**
* Gets the exception message of the specified
* exception.
*
* @param index The index of the exception
* @return The exception message
*/
public String getMessage(int index) {
return ((DIGError) errorList.get(index)).getMessage();
}
/**
* Gets the <code>DIGError</code> object
* associated with this exception.
*/
public DIGError getDIGError(int index) {
return (DIGError) errorList.get(index);
}
/**
* Gets the number of DIGErrors
*/
public int getNumberOfErrors() {
return errorList.size();
}
public Collection getErrors() {
return errorList;
}
}
|
[
"[email protected]"
] | |
6ea51eeed92940ed746aab427b1bc7d4a91afdbc
|
7a117ad930d0db9b28ebaba254bed233b46d2c79
|
/src/com/example/rdsystemapp/Login.java
|
9018b9d848d883f44f3f775fedd16e7f6bd912bf
|
[] |
no_license
|
salver20/Rdsystemclient
|
d1e658233c894b26c003caa38a8598d4f8c76d01
|
b7d40ad1fa8d87b4a6c2dbdb72b15e68e5155bf3
|
refs/heads/master
| 2021-01-10T23:39:46.073862 | 2016-10-01T01:40:34 | 2016-10-01T01:40:34 | 69,713,429 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,222 |
java
|
package com.example.rdsystemapp;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.EditText;
public class Login extends Activity {
private EditText pwd, uid;
private Button login;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
pwd = (EditText) findViewById(R.id.password);
uid = (EditText) findViewById(R.id.username);
login = (Button) findViewById(R.id.login);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.login, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
|
[
"[email protected]"
] | |
911c6d30ae27682fe2f6cef4b559af58d9a82874
|
8a1934fd9dcd22f34b0b4abec043f9b90aafafd7
|
/app/src/test/java/com/marianoto/friends/ExampleUnitTest.java
|
e9dacce60ad0f96c1f678424deb81ec3c4c5ed72
|
[] |
no_license
|
mariain/Friends-android
|
3961a43399c1dbb25c4bbf94f087a30e6ca70493
|
bbcb02cdefe1dfdf1f42f8ccfc3dcd87b4768033
|
refs/heads/master
| 2021-01-11T14:02:16.455481 | 2017-06-20T22:02:26 | 2017-06-20T22:02:26 | 94,938,795 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 399 |
java
|
package com.marianoto.friends;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
|
[
"[email protected]"
] | |
6f7a1a52858f56d2a195f52115dff170baa5d122
|
ff0d01ff79c0384f5054898492a5a0e8ce61409e
|
/app/src/main/java/com/dq/liuhe/adapter/order/OrderGoodsAdapter.java
|
13daefd96dfcc7b738fa1a8b2134d14b0227b0f7
|
[] |
no_license
|
jingangdan/DQLiuHe
|
4fecbe787b71c94c67d9de3c14d601c8f3358377
|
f98c942b06ee1f3eb449be8f5d65428b74cfdf80
|
refs/heads/master
| 2020-03-06T15:43:03.763129 | 2018-04-05T02:37:52 | 2018-04-05T02:37:52 | 125,683,837 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,381 |
java
|
package com.dq.liuhe.adapter.order;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.dq.liuhe.R;
import com.dq.liuhe.bean.order.Order;
import com.dq.liuhe.utils.BaseRecyclerViewHolder;
import com.dq.liuhe.utils.HttpPath;
import java.util.List;
/**
* 商品列表(订单列表下)
* Created by jingang on 2018/1/20.
*/
public class OrderGoodsAdapter extends RecyclerView.Adapter<OrderGoodsAdapter.MyViewHolder> {
private Context mContext;
private List<Order.DataBean.GoodslistBean> goodsList;
// private OnItemClickListener onItemClickListener;
public OrderGoodsAdapter(Context mContext, List<Order.DataBean.GoodslistBean> goodsList) {
this.mContext = mContext;
this.goodsList = goodsList;
}
// public void setOnItemClickListener(OnItemClickListener onItemClickListener) {
// this.onItemClickListener = onItemClickListener;
// }
@Override
public MyViewHolder onCreateViewHolder(ViewGroup viewGroup, int i) {
MyViewHolder vh = new MyViewHolder(LayoutInflater.from(mContext).inflate(R.layout.item_order_goods, viewGroup, false));
return vh;
}
@Override
public void onBindViewHolder(final MyViewHolder holder, int positon) {
// if (onItemClickListener != null) {
// holder.itemView.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// int position = holder.getLayoutPosition(); // 1
// onItemClickListener.onItemClick(holder.itemView, position); // 2
// }
// });
// }
// ImageUtils.loadIntoUseFitWidths(mContext,
// HttpPath.IMG_HEADER + goodsList.get(positon).getThumb(),
// R.mipmap.icon_empty002,
// R.mipmap.icon_error002,
// holder.img);
Glide.with(mContext)
.load(HttpPath.IMG_HEADER + goodsList.get(positon).getThumb())
.asBitmap()
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.into(holder.img);
holder.goodsname.setText("" + goodsList.get(positon).getGoodsname());
holder.optionname.setText("" + goodsList.get(positon).getOptionname());
holder.price.setText("¥" + goodsList.get(positon).getPrice());
holder.count.setText("" + goodsList.get(positon).getCount());
}
@Override
public int getItemCount() {
return goodsList.size();
}
public class MyViewHolder extends BaseRecyclerViewHolder {
ImageView img;
TextView goodsname;
TextView optionname;
TextView price;
TextView count;
public MyViewHolder(View view) {
super(view);
img = view.findViewById(R.id.iv_order_img);
goodsname = view.findViewById(R.id.tv_order_goodsname);
optionname = view.findViewById(R.id.tv_order_optionname);
price = view.findViewById(R.id.tv_order_price);
count = view.findViewById(R.id.tv_order_count);
}
}
}
|
[
"[email protected]"
] | |
fd587874fb69645deadd66e2130eaf153944acd2
|
794a349425f42f954bfc313727cec11befc32412
|
/src/it/unipv/ingsw/alchemicalbank/wizards/OmbrinoWizard.java
|
19e0994067728e1a355e0e48bf7ee8fbe6f3dba7
|
[
"MIT"
] |
permissive
|
IngSW-unipv/AlchemicalBank
|
41c55f706e35582180438fbed28bdf696c9fa7a7
|
dde38b63914ef312a3def564df9fe3de98279233
|
refs/heads/master
| 2021-06-15T04:16:09.738392 | 2021-03-23T18:51:55 | 2021-03-23T18:51:55 | 172,229,076 | 7 | 8 |
MIT
| 2019-03-16T17:39:01 | 2019-02-23T15:19:17 |
Java
|
UTF-8
|
Java
| false | false | 3,414 |
java
|
//package it.unipv.ingsw.alchemicalbank.wizards;
// import java.util.logging.Logger;
// import java.util.ArrayList;
// import java.util.HashMap;
// import it.unipv.ingsw.alchemicalbank.Decision;
// import it.unipv.ingsw.alchemicalbank.Wizard;
////6 OF THESE WIZARD CAN KILL ANYONE USING LOGGER TO SEE OTHER PEOPLE RESULTS.
//
// public class OmbrinoWizard extends Wizard {
//
// static HashMap<Long, Integer[]> games = new HashMap<>();
// static HashMap<Long, Boolean> thieveGames = new HashMap<>();
//
// boolean antithief = false;
//
// Long counter;
// Long oldCounter;
//
// private void buildCurrentGame(Long timestamp) {
// this.games.put(timestamp, new Integer[13]);
// for (int i=0; i<13; i++) {
// this.games.get(timestamp)[i] = 0;
// }
// this.thieveGames.put(timestamp, false);
// }
//
// @Override
// public void newFund(int year, int order, long myMoney, long otherMoney) {
//
// }
//
// @Override
// public Decision askKeepOrLiquidate(int fundValue, int timespan) {
// this.counter = System.currentTimeMillis();
// Long hash = this.counter;
// if (timespan == 1 || timespan == 2) {
// this.buildCurrentGame(this.counter);
// } else {
// if (this.oldCounter != null && this.counter - this.oldCounter > 1) {
// this.buildCurrentGame(this.counter);
// } else if (this.oldCounter == null) {
// this.buildCurrentGame(this.counter);
// }
// }
// if (timespan > 2 && this.games.get(this.oldCounter) != null) {
// this.games.put(this.counter, this.games.get(this.oldCounter));
// this.thieveGames.put(this.counter, this.thieveGames.get(this.oldCounter));
// }
// this.oldCounter = this.counter;
// Decision result;
//
// if (this.games.get(hash) == null) {
// }
// int current = this.games.get(hash)[timespan] + 1;
// this.games.get(hash)[timespan] += 1;
//
// if (!this.thieveGames.get(hash).booleanValue() && current > 1) {
// // se entro qua dentro vuol dire che � la seconda che veniamo richiamati per
// // questo timestamp in questo gioco
// this.thieveGames.put(hash, true);
// }
//
// if (this.thieveGames.get(hash).booleanValue() && current == 1) {
// result = this.makeDecisionForThief(fundValue, timespan);
// } else {
// result = this.makeDecision(this.thieveGames.get(hash).booleanValue(), fundValue, timespan);
// }
//
// return result;
// }
//
// private Decision makeDecision(boolean antithief, int fundValue, int timespan) {
// if (antithief) {
// return Decision.LIQUIDATE_FUND;
// }
// if (timespan > 10) {
// return Decision.LIQUIDATE_FUND;
// } else {
// return Decision.KEEP_FUND;
// }
// }
//
// private Decision makeDecisionForThief(int fundValue, int timespan) {
// return Decision.KEEP_FUND;
// }
//
// @Override
// public void fundClosed(int time, int yourRevenue, int partnerRevenue) {
// //this.myAllRevenue += yourRevenue;
// }
//
// }
|
[
"[email protected]"
] | |
03bb52c3f022db042cc29fff19f230898c9312d5
|
eca69197507341718c7107d014e793b1170078be
|
/oplexecutor/src/main/java/org/imf/oplexecutor/fims/bms/CustomValueType.java
|
f7e7fc2b334d252496b242e46e1f6f4c408f7673
|
[] |
no_license
|
ben2602/OPLExecutor
|
1328a5b1b38579fff808574d20c06e0d56884adc
|
9c3b4d86c575052361e8bef72bec5fbd3cc98636
|
refs/heads/master
| 2021-01-13T03:15:08.135417 | 2017-04-07T09:42:11 | 2017-04-07T09:42:11 | 77,609,883 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,074 |
java
|
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.03.13 at 10:49:01 AM CET
//
package org.imf.oplexecutor.fims.bms;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Introduced In Version: 1_1_0
*
* <p>Java class for CustomValueType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="CustomValueType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomValueType")
public abstract class CustomValueType {
}
|
[
"Benjamin@benjaminsapfel"
] |
Benjamin@benjaminsapfel
|
cc8086a429ec5998457d581df58cfe288d75e5b2
|
61fcd849d7230feb76cdf568c81e60405f748731
|
/InformationTechnology/RMI/JRMP/DbmsServer/src/main/java/DBMS/Dbms.java
|
3c0f4963cfda17daeb8658a1ef96b99321fe9aa3
|
[
"MIT"
] |
permissive
|
NarbiD/University_labs
|
98ed8c768cbfe2eba101e77dcd2026fbad058edc
|
bd6578d39e8da261f7d8567851bf0847d0e2f854
|
refs/heads/master
| 2021-01-25T14:33:24.940379 | 2019-02-10T20:36:27 | 2019-02-10T20:36:27 | 69,800,875 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 713 |
java
|
package DBMS;
import DBMS.database.Database;
import java.io.IOException;
import java.io.Serializable;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.Collection;
import java.util.Optional;
public interface Dbms extends Remote, Serializable {
void setDatabases(Collection<Database> databases) throws RemoteException;
void loadDatabaseFromStorage() throws IOException, RemoteException;
Database createDatabase(String name) throws IOException, RemoteException;
void deleteDatabase(String name) throws IOException, RemoteException;
Optional<Database> getDatabase(String name) throws RemoteException;
Collection<Database> getAllDatabases() throws RemoteException;
}
|
[
"[email protected]"
] | |
ab2b4f4d99e9193332b98bf51ae2a0afc925c61d
|
0a284cc98de613efa2b574d4824862443e353b78
|
/src/br/com/escolatcc/bean/PessoaBean.java
|
a748329973c8c2a6e17784ea8c1486ca5e0ec121
|
[] |
no_license
|
GabrielEu/TrabalhoTCC
|
58869762dc1b8011d9df92587d40ef211c837961
|
af66ee91ad7c5ce2a13ab18a171705d2fabeca1d
|
refs/heads/master
| 2020-03-26T06:36:18.848765 | 2018-08-13T17:35:45 | 2018-08-13T17:35:45 | 144,612,324 | 1 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,236 |
java
|
package br.com.escolatcc.bean;
public class PessoaBean {
private static int idPessoa;
private static String nomePessoa;
private static int nascimentoPessoa;
private static int idEnderecoPessoa;
private static int numero;
private static String email;
private static String sexo;
private static int rg;
private static int cpf;
private static boolean aluno;
private static boolean professor;
private static boolean funcionario;
private static int idConta;
public int getIdPessoa() {
return idPessoa;
}
public void setIdPessoa(int idPessoa) {
this.idPessoa = idPessoa;
}
public String getNomePessoa() {
return nomePessoa;
}
public void setNomePessoa(String nomePessoa) {
this.nomePessoa = nomePessoa;
}
public int getNascimentoPessoa() {
return nascimentoPessoa;
}
public void setNascimentoPessoa(int nascimentoPessoa) {
this.nascimentoPessoa = nascimentoPessoa;
}
public int getIdEnderecoPessoa() {
return idEnderecoPessoa;
}
public void setIdEnderecoPessoa(int idEnderecoPessoa) {
this.idEnderecoPessoa = idEnderecoPessoa;
}
public int getNumero() {
return numero;
}
public void setNumero(int numero) {
this.numero = numero;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getSexo() {
return sexo;
}
public void setSexo(String sexo) {
this.sexo = sexo;
}
public int getRg() {
return rg;
}
public void setRg(int rg) {
this.rg = rg;
}
public int getCpf() {
return cpf;
}
public void setCpf(int cpf) {
this.cpf = cpf;
}
public boolean isAluno() {
return aluno;
}
public void setAluno(boolean aluno) {
this.aluno = aluno;
}
public boolean isProfessor() {
return professor;
}
public void setProfessor(boolean professor) {
this.professor = professor;
}
public boolean isFuncionario() {
return funcionario;
}
public void setAdministrador(boolean funcionario) {
this.funcionario = funcionario;
}
public int getIdConta() {
return idConta;
}
public void setIdConta(int idConta) {
this.idConta = idConta;
}
}
|
[
"[email protected]"
] | |
87838a73b21440c84de74b7ab7998c42723026c6
|
5b34e237d57c15191cb97a622a5e9c95116d58b9
|
/app/src/main/java/com/wang/audiodemo/AudioPlayer.java
|
6d9f239f2ac5ca109708abe800302acc6e87b168
|
[] |
no_license
|
wq316476051/AudioDemo
|
b23fd61cf10be83b2520494634896b7a17e41328
|
09239a1d87e9d6f8dac62f060b92d61c45034618
|
refs/heads/master
| 2020-04-02T03:46:01.018398 | 2018-10-28T15:22:36 | 2018-10-28T15:22:36 | 153,983,018 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 16,038 |
java
|
package com.wang.audiodemo;
import android.content.res.AssetFileDescriptor;
import android.media.AudioAttributes;
import android.media.AudioFormat;
import android.media.AudioManager;
import android.media.AudioRouting;
import android.media.AudioTimestamp;
import android.media.AudioTrack;
import android.media.JetPlayer;
import android.media.MediaCodec;
import android.media.MediaExtractor;
import android.media.MediaFormat;
import android.media.PlaybackParams;
import android.media.VolumeShaper;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.Message;
import android.util.Log;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.Queue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class AudioPlayer {
private static final String TAG = "AudioPlayer";
private static final long TIME_OUT_US = 10_000 /*10 毫秒*/; // 单位 microseconds
private Object mLock = new Object(); // 锁对象,用于线程间通信
private State mState = State.IDLE;
private AssetFileDescriptor mAssetFileDescriptor;
private MediaExtractor mMediaExtractor;
private MediaFormat mMediaFormat;
private MediaCodec mMediaDecoder;
private ExecutorService mExecutor;
private String mMimetype;
private AudioTrack mAudioTrack;
private Callback mCallback;
private long mDuration;
private Handler mLoudlessHandler;
private int mSampleRateInHz;
private int mChannelCount;
private int mPcmEncoding;
private int mBitRate;
public void setDataSource(AssetFileDescriptor fd) {
mAssetFileDescriptor = fd;
}
public boolean isPlaying() {
return mState == State.PLAYING;
}
public boolean isPaused() {
return mState == State.PAUSED;
}
public void prepare() throws IOException {
Log.d(TAG, "prepare: ");
// 1. 创建 MediaExtractor
Log.d(TAG, "prepare: 创建 MediaExtractor");
mMediaExtractor = new MediaExtractor();
mMediaExtractor.setDataSource(mAssetFileDescriptor);
// 2. 确定音轨
int trackCount = mMediaExtractor.getTrackCount();
for (int index = 0; index < trackCount; index++) {
MediaFormat trackFormat = mMediaExtractor.getTrackFormat(index);
String mimetype = trackFormat.getString(MediaFormat.KEY_MIME);
Log.d(TAG, "prepare: mimetpe = " + mimetype);
if (mimetype.startsWith("audio")) {
mMediaExtractor.selectTrack(index);
mMediaFormat = trackFormat;
Log.d(TAG, "prepare: mMediaFormat = " + mMediaFormat);
// mMediaFormat = {sample-rate=44100, track-id=1, durationUs=180618562, mime=audio/mpeg, channel-count=2, bitrate=128000}
mSampleRateInHz = mMediaFormat.getInteger(MediaFormat.KEY_SAMPLE_RATE); // 采样率单位 Hz,个每秒,
mDuration = mMediaFormat.getLong(MediaFormat.KEY_DURATION); // 时间长度,单位 microseconds
mMimetype = mimetype;
mChannelCount = mMediaFormat.getInteger(MediaFormat.KEY_CHANNEL_COUNT); // 声道数
mBitRate = mMediaFormat.getInteger(MediaFormat.KEY_BIT_RATE); // 比特率, 单位 bps: bits per second【此处应该是压缩后的比特率】
break;
}
}
// 3. 创建 MediaCodec
Log.d(TAG, "prepare: 创建 MediaCodec");
try {
mMediaDecoder = MediaCodec.createDecoderByType(mMimetype);
mMediaDecoder.configure(mMediaFormat, null, null, 0); // start later
// TODO for test
MediaFormat inputFormat = mMediaDecoder.getInputFormat();
Log.d(TAG, "prepare: inputFormat = " + inputFormat);
// inputFormat = {sample-rate=44100, mime=audio/mpeg, channel-count=2}
// TODO for test
MediaFormat outputFormat = mMediaDecoder.getOutputFormat();
Log.d(TAG, "prepare: outputFormat = " + outputFormat);
// outputFormat = {sample-rate=44100, pcm-encoding=2, mime=audio/raw, channel-count=2}
// 计算比特率:
// int bitRate = sample-rate * (pcm-encoding * 8) * 2;
Log.d(TAG, "prepare: MediaCodec.name = " + mMediaDecoder.getName());
} catch (IOException e) {
e.printStackTrace();
}
// 4. 创建 AudioTrack
Log.d(TAG, "prepare: 创建 AudioTrack");
int streamType = AudioManager.STREAM_MUSIC;
int sampleRateInHz = mMediaFormat.getInteger(MediaFormat.KEY_SAMPLE_RATE);
int channelConfig = mMediaFormat.getInteger(MediaFormat.KEY_CHANNEL_COUNT) == 1 ?
AudioFormat.CHANNEL_OUT_MONO : AudioFormat.CHANNEL_OUT_STEREO;
int audioFormat = AudioFormat.ENCODING_PCM_16BIT;
int bufferSizeInBytes = AudioTrack.getMinBufferSize(sampleRateInHz, channelConfig, audioFormat); // 10. 计算最小缓冲区
int mode = AudioTrack.MODE_STREAM;
mAudioTrack = new AudioTrack(streamType, sampleRateInHz, // 11. 创建 AudioTrack,play later
channelConfig, audioFormat, bufferSizeInBytes, mode);
PlaybackParams params = new PlaybackParams();
params.setSpeed(0.5f); // 慢速有效,快速无效。设置快速时,必须调整bufferSize,如2倍速就乘以2
mAudioTrack.setPlaybackParams(params);
// mAudioTrack = new AudioTrack.Builder()
// .setAudioAttributes(new AudioAttributes.Builder()
// .setContentType(AudioAttributes.CONTENT_TYPE_MUSIC)
// .setLegacyStreamType(AudioManager.STREAM_MUSIC)
// .setUsage(AudioAttributes.USAGE_MEDIA)
// .build())
// .setAudioFormat(new AudioFormat.Builder()
// .setSampleRate(sampleRateInHz)
// .setEncoding(AudioFormat.ENCODING_PCM_16BIT)
// .setChannelMask(AudioFormat.CHANNEL_IN_STEREO)
// .build())
// .setBufferSizeInBytes(bufferSizeInBytes)
// .setTransferMode(AudioTrack.MODE_STREAM)
// .build();
// VolumeShaper.Configuration config =
// new VolumeShaper.Configuration.Builder()
// .setDuration(3000)
// .setCurve(new float[] {0.f, 1.f}, new float[] {0.f, 1.f})
// .setInterpolatorType(VolumeShaper.Configuration.INTERPOLATOR_TYPE_LINEAR)
// .build();
// VolumeShaper volumeShaper = mAudioTrack.createVolumeShaper(config);
// mAudioTrack.getTimestamp(new AudioTimestamp());
// 5. 创建任务线程池
Log.d(TAG, "prepare: 任务线程池");
mExecutor = Executors.newSingleThreadExecutor();
// 6. 处理响度和播放进度
HandlerThread thread = new HandlerThread("loudless");
thread.start();
mLoudlessHandler = new Handler(thread.getLooper(), mLoudlessHandlerCallback);
mState = State.PREPARED;
}
public void play() {
Log.d(TAG, "play: mState = " + mState);
if (mState == State.IDLE || mState == State.STOPPED) {
try {
prepare();
} catch (IOException e) {
e.printStackTrace();
}
}
if (mState == State.PREPARED ) {
mExecutor.submit(new PlayTask());
mState = State.PLAYING;
} else if (mState == State.PAUSED) {
mState = State.PLAYING;
synchronized (mLock) {
mLock.notify();
}
}
}
public void pause() {
if (mState == State.PLAYING) {
mState = State.PAUSED;
}
}
public void stop() {
if (mState == State.PLAYING) {
mState = State.STOPPED;
} else if (mState == State.PAUSED) {
mState = State.STOPPED;
synchronized (mLock) {
mLock.notify();
}
}
}
public void release() {
if (mMediaExtractor != null) {
mMediaExtractor.release();
mMediaExtractor = null;
}
if (mMediaDecoder != null) {
mMediaDecoder.release();
mMediaDecoder = null;
}
if (mAudioTrack != null) {
mAudioTrack.release();
mAudioTrack = null;
}
if (mAudioTrack != null) {
mExecutor.shutdownNow();
mExecutor = null;
}
}
public void setCallback(Callback callback) {
mCallback = callback;
}
@Override
protected void finalize() throws Throwable {
release();
super.finalize();
}
private class PlayTask implements Runnable {
@Override
public void run() {
Log.d(TAG, "run: ");
mMediaDecoder.start();
mAudioTrack.play();
byte[] tempBuffer = new byte[1024];
MediaCodec.BufferInfo bufferInfo = new MediaCodec.BufferInfo();
long startMs = System.currentTimeMillis();
while (mState != State.STOPPED) {
// 第一阶段:从文件中拉取数据,解码
int inputBufferId = mMediaDecoder.dequeueInputBuffer(TIME_OUT_US);
Log.d(TAG, "run: inputBufferId = " + inputBufferId);
if (inputBufferId >= 0) {
ByteBuffer inputBuffer = mMediaDecoder.getInputBuffer(inputBufferId);
int sampleSize = mMediaExtractor.readSampleData(inputBuffer, 0);
long sampleTime = mMediaExtractor.getSampleTime();
Log.d(TAG, "run: sampleSize = " + sampleSize + "; sampleTime = " + sampleTime);
if (sampleSize > 0) {
// 正常读取
mMediaDecoder.queueInputBuffer(inputBufferId, 0, sampleSize, sampleTime, 0);
mMediaExtractor.advance(); // 继续
} else {
// 到末尾了,End of Stream
mMediaDecoder.queueInputBuffer(inputBufferId, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM);
}
}
// 处理暂停、继续播放
if (mState == State.PAUSED) {
synchronized (mLock) {
Log.d(TAG, "run: pause");
mAudioTrack.pause();
try {
mLock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
mAudioTrack.play();
}
}
// 获取已解码数据
int outputBufferId = mMediaDecoder.dequeueOutputBuffer(bufferInfo, TIME_OUT_US);
Log.d(TAG, "run: outputBufferId = " + outputBufferId);
if (outputBufferId >= 0) {
ByteBuffer outputBuffer = mMediaDecoder.getOutputBuffer(outputBufferId);
if (tempBuffer.length < bufferInfo.size) {
tempBuffer = new byte[bufferInfo.size]; // 缓冲区不够的话,重新分配
}
outputBuffer.position(0);
outputBuffer.get(tempBuffer, 0, bufferInfo.size); // 转移数据
outputBuffer.clear();
mAudioTrack.write(tempBuffer, 0, bufferInfo.size); // AudioTrack 播放
mMediaDecoder.releaseOutputBuffer(outputBufferId, false); // 释放
// 展示响度变化
for (int i = 0; i < bufferInfo.size; i += (mBitRate / 8) * mChannelCount * (1000 / 50)) { //
Message msg = Message.obtain();
msg.what = MSG_OFFER_LOUDLESS;
msg.arg1 = tempBuffer[i];
mLoudlessHandler.sendMessage(msg);
}
// 展示播放进度
Message msg = Message.obtain();
msg.what = MSG_PLAY_PROCESS;
msg.arg1 = (int) bufferInfo.presentationTimeUs;
msg.arg2 = (int) mDuration;
mLoudlessHandler.sendMessage(msg);
// 等待
Log.d(TAG, "run: 延时等待,如果缓冲区里的可展示时间 > 当前视频播放的进度,就休眠一下");
while (bufferInfo.presentationTimeUs / 1000 > System.currentTimeMillis() - startMs + 10/* leave a little bit */) { // 25. 延迟,避免渲染过快
long presentationTime = bufferInfo.presentationTimeUs / 1000;
long presentedTime = System.currentTimeMillis() - startMs;
Log.d(TAG, "run: presentationTimeUs = " + presentationTime);
Log.d(TAG, "run: presentedTime = " + presentedTime);
try {
Thread.sleep(10);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
} else if (outputBufferId == MediaCodec.INFO_OUTPUT_FORMAT_CHANGED) {
Log.d(TAG, "run: INFO_OUTPUT_FORMAT_CHANGED");
}
// 判断是否已在文件末尾,结束
if ((bufferInfo.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0) {
Log.d(TAG, "run: End of Stream");
break;
}
}
mAudioTrack.stop();
mMediaDecoder.stop();
mState = State.STOPPED;
Log.d(TAG, "run: Task End");
}
};
private static final int MSG_OFFER_LOUDLESS = 1024;
private static final int MSG_POLL_LOUDLESS = 1025;
private static final int MSG_PLAY_PROCESS = 1026;
private Handler.Callback mLoudlessHandlerCallback = new Handler.Callback() {
private Queue<Byte> mQueue = new LinkedList<>();
@Override
public boolean handleMessage(Message msg) {
switch (msg.what) {
case MSG_OFFER_LOUDLESS:
mQueue.offer(Byte.valueOf((byte) msg.arg1));
if (!mLoudlessHandler.hasMessages(MSG_POLL_LOUDLESS)) {
// Message.obtain(mLoudlessHandler, MSG_POLL_LOUDLESS).sendToTarget();
handleMessage(Message.obtain(mLoudlessHandler, MSG_POLL_LOUDLESS));
}
return true;
case MSG_POLL_LOUDLESS:
if (mLoudlessHandler.hasMessages(MSG_POLL_LOUDLESS)) {
mLoudlessHandler.removeMessages(MSG_POLL_LOUDLESS);
}
mLoudlessHandler.sendMessageDelayed(Message.obtain(mLoudlessHandler, MSG_POLL_LOUDLESS), 1000 / 50);
Byte loud = mQueue.poll();
if (mCallback != null && loud != null) {
mCallback.onLoudlessChange(loud, 128);
}
return true;
case MSG_PLAY_PROCESS:
int process = msg.arg1;
int max = msg.arg2;
if (mCallback != null) {
mCallback.onPlayProgressChange(process, max);
}
return true;
}
return false;
}
};
public enum State {
IDLE, PREPARED, PLAYING, PAUSED, STOPPED
}
public interface Callback {
void onLoudlessChange(long loudless, long max);
void onPlayProgressChange(long progress, long max);
}
}
|
[
"[email protected]"
] | |
4faac10f80eaf66180e15f8cb0561b42c0ae7103
|
5d04b756f106ea2900e4587c261c5c994912cad2
|
/app/src/main/java/com/example/battleshipgamestate/game/GameFramework/infoMessage/StartGameInfo.java
|
1482d01b3d79d1a6fedc3324354ec47a1ad2c5b4
|
[] |
no_license
|
magliana22/BSGameActual
|
3344d7e81c7501a26d1eb64bed72e68dc6804c4a
|
a5d1f55a454376059dfbc3832c8c0fc068442a6e
|
refs/heads/master
| 2020-09-01T03:29:44.060449 | 2019-11-27T01:30:59 | 2019-11-27T01:30:59 | 218,869,184 | 1 | 1 | null | 2019-11-05T00:55:55 | 2019-10-31T22:05:22 |
Java
|
UTF-8
|
Java
| false | false | 1,053 |
java
|
package com.example.battleshipgamestate.game.GameFramework.infoMessage;
/**
* The a message from the game to a player that game is ready to start.
*
* @author Steven R. Vegdahl
* @version July 2013
*/
public class StartGameInfo extends GameInfo {
//Tag for logging
private static final String TAG = "StartGameInfo";
// to satisfy the Serializable interface
private static final long serialVersionUID = -6396033535388393791L;
// an array, in order of the names of all the players playing the game
private String[] allPlayerNames;
/**
* constructor
*
* @param allPlayerNames
* an array containing the names of all the players that are playing
* the game, in player-ID order.
*/
public StartGameInfo(String[] allPlayerNames) {
this.allPlayerNames = allPlayerNames;
}
/**
* getter-method for the array of player names
*
* @return
* the array of player names
*/
public String[] getPlayerNames() {
return allPlayerNames;
}
}
|
[
"[email protected]"
] | |
b55bb69d59fc58344cf803d682e48242b73cbc45
|
bb8739e84e457cb25355686af267e3729823b54d
|
/arena-appengine/trunk/arena-appengine/src/main/java/org/openinsula/arena/appengine/gwt/client/table/Table.java
|
a56c7e617a6d610fe2f6d89405a4cbd84c5ca8f8
|
[] |
no_license
|
mateusferrer/openinsula-arena
|
d62a86f86558e471bf4ec7b694638fb6d940213c
|
e52c168755472de0b5da0e237c242c366c44c193
|
refs/heads/master
| 2020-07-08T10:29:32.594695 | 2009-07-18T03:54:57 | 2009-07-18T03:54:57 | 35,433,033 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,719 |
java
|
package org.openinsula.arena.appengine.gwt.client.table;
import org.openinsula.arena.appengine.gwt.client.util.Assert;
import org.openinsula.arena.appengine.gwt.client.util.ObjectUtils;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.HTMLTable;
/**
* @author Lucas K Mogari
* @author Eduardo Rebola
*/
public abstract class Table<T extends HTMLTable> extends Composite implements TableModelListener {
private T table;
private TableModel model;
private boolean useTheme = true;
public Table() {
table = createNewTable();
initWidget(table);
}
public Table(final TableModel tableModel) {
this();
setModel(tableModel);
}
protected abstract T createNewTable();
public final T getTable() {
return table;
}
/**
* @deprecated In favor of {@link #getTable()}.
*/
@Deprecated
@Override
public T getWidget() {
return getTable();
}
public final TableModel getModel() {
return model;
}
public void setModel(final TableModel tableModel) {
Assert.notNull(tableModel, "TableModel is required!");
final TableModel oldTableModel = this.model;
if (!ObjectUtils.nullSafeEquals(oldTableModel, tableModel)) {
this.model = tableModel;
if (oldTableModel != null) {
oldTableModel.removeTableModelListener(this);
}
tableModel.addTableModelListener(this);
if (useTheme) {
tableModel.addTableModelListener(new StyleTableModelListener(this));
}
tableChanged(new TableModelEvent(tableModel));
}
}
public void useTheme(final boolean value) {
if (this.useTheme != value) {
if (model != null && value) {
model.addTableModelListener(new StyleTableModelListener(this));
}
}
this.useTheme = value;
}
}
|
[
"erdanielli@4e3340f0-7962-11de-bdc7-1f637afd43b1"
] |
erdanielli@4e3340f0-7962-11de-bdc7-1f637afd43b1
|
7a373e6f4af74dbb38ab87797a6cd8173f020bab
|
02f7336aa1ef60d4ae919b62788e536a56681df9
|
/src/main/java/luvina/model/Business.java
|
508ac637ca070dc2ab84d33ab6984febe2d87cf1
|
[] |
no_license
|
phamgiacuong/Luvina
|
89c492038dadf6b4d49d4ae426f09aafc7200d42
|
2442b1a062d66e1d8e8a49f6e773c351612d48d6
|
refs/heads/master
| 2020-03-23T15:59:04.176466 | 2018-08-15T16:39:31 | 2018-08-15T16:39:31 | 141,787,937 | 0 | 1 | null | 2018-08-13T13:30:52 | 2018-07-21T06:38:29 |
HTML
|
UTF-8
|
Java
| false | false | 982 |
java
|
package luvina.model;
import lombok.AllArgsConstructor;
import javax.persistence.*;
import java.sql.Date;
@AllArgsConstructor
@Entity
@Table(name = "business")
public class Business {
@Id
@Column(name = "cust_id")
Integer cust_id;
@Column(name = "INCORP_DATE")
Date incorp_date;
@Column(name = "name")
String name;
@Column(name = "state_id")
String state_id;
public Business() {
}
public Date getIncorp_date() { return incorp_date; }
public String getName() { return name; }
public String getState_id() { return state_id; }
public Integer getCust_id() { return cust_id; }
public void setCust_id(Integer cust_id) {
this.cust_id = cust_id;
}
public void setIncorp_date(Date incorp_date) {
this.incorp_date = incorp_date;
}
public void setName(String name) {
this.name = name;
}
public void setState_id(String state_id) {
this.state_id = state_id;
}
}
|
[
"[email protected]"
] | |
95189eb451915a0fafd3ba2430e93789137a8988
|
a57412ca109a48480e32c8a8117e436b4ece8f6b
|
/app/src/main/java/com/two/emergencylending/controller/LogoutController.java
|
996acbdb9c6b62a09d201342073fed3fb87643c3
|
[] |
no_license
|
wangyin8866/Comemergencylending_jjt
|
3e82aa54a6ccefe64b1041fb064f9673e1b579d5
|
f20e608f298e7c8047b41a20ce70870dd9b7b0ee
|
refs/heads/master
| 2021-08-27T20:21:52.600715 | 2017-11-28T07:09:39 | 2017-11-28T07:09:39 | 104,042,325 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,912 |
java
|
package com.two.emergencylending.controller;
import android.app.Activity;
import com.two.emergencylending.application.IApplication;
import com.two.emergencylending.constant.ErrorCode;
import com.two.emergencylending.constant.NetContants;
import com.two.emergencylending.constant.SPKey;
import com.two.emergencylending.http.OKManager;
import com.two.emergencylending.utils.CommonUtils;
import com.two.emergencylending.utils.LogUtil;
import com.two.emergencylending.utils.SharedPreferencesUtil;
import com.two.emergencylending.utils.ToastAlone;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import okhttp3.Call;
/**
* Created by User on 2016/8/22.
*/
public class LogoutController {
private Activity mActivity;
private Map parameter;
private IControllerCallBack controller;
private String msg="";
public LogoutController(Activity activity,IControllerCallBack controller) {
this.mActivity = activity;
this.controller = controller;
}
public void loginout() {
if (!CommonUtils.isNetAvailable()) return;
parameter = new HashMap();
parameter.clear();
parameter.put("juid", SharedPreferencesUtil.getInstance(IApplication.globleContext).getString(SPKey.JUID));
parameter.put("login_token", SharedPreferencesUtil.getInstance(IApplication.globleContext).getString(SPKey.LOGIN_TOKEN));
LogUtil.d("Request", parameter.toString());
OKManager.getInstance().sendComplexForm(NetContants.LOGINOUT, parameter, new OKManager.Func1() {
@Override
public void onResponse(String result) {
String response = result.toString().trim();
LogUtil.d("Logout", response);
JSONObject jsonObject = null;
try {
jsonObject = new JSONObject(response);
String flag = jsonObject.optString("flag");
msg = jsonObject.optString("msg");
if (flag.equals(ErrorCode.SUCCESS)) {
// IApplication.getInstance().clearUserInfo(mActivity);
// IApplication.isToHome = true;
// mActivity.finish();
} else if (flag.equals(ErrorCode.EQUIPMENT_KICKED_OUT)) {
IApplication.getInstance().backToLogin(mActivity);
}else {
}
} catch (JSONException e) {
ToastAlone.showLongToast(mActivity,ErrorCode.FAIL_DATA);
e.printStackTrace();
}
}
@Override
public void onFailure(Call call, IOException e) {
ToastAlone.showLongToast(mActivity,ErrorCode.FAIL_NETWORK);
e.printStackTrace();
}
});
}
}
|
[
"[email protected]"
] | |
bce0025fe93904bf21ca8eb2bb3bfdc5e679bf89
|
43d97c98db5ba18270b92ee36892f1757e79bcca
|
/src/main/java/Animal/Dog.java
|
f905ba4b842cc8112a89dae448060a04a3c8c1ea
|
[] |
no_license
|
TyletsPavial/AnimalVoicesFinal
|
293ce1d768d6516d94b98d821914d7473781ecdc
|
27134851dd26f5bfe7d7af3ac0f43cbb59e033dd
|
refs/heads/master
| 2022-12-24T14:00:37.834594 | 2020-10-01T15:23:23 | 2020-10-01T15:23:23 | 300,325,188 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 137 |
java
|
package Animal;
public class Dog extends Animal{
public Dog(String name, String voice) {
super(name, voice);
}
}
|
[
"[email protected]"
] | |
5bd0a24748c474aaa6f1737a7bab90f325653bdc
|
155a2184149a3fe453bd218508f5fa744f8b5662
|
/src/main/java/expansioncontent/cards/GuardianWhirl.java
|
07c2d4b0a70b2872b89941d9adb33daecabdaed1
|
[
"MIT"
] |
permissive
|
Rita-Bernstein/downfall-rebalance
|
93e3f7e580edbf05c996c7136a85d7a31d6ed59b
|
575c49aae2a2b6c90c74a86e797435563e8175b6
|
refs/heads/master
| 2022-12-19T21:03:20.120786 | 2020-09-29T14:55:54 | 2020-09-29T14:55:54 | 288,353,087 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,543 |
java
|
package expansioncontent.cards;
import com.megacrit.cardcrawl.actions.animations.VFXAction;
import com.megacrit.cardcrawl.actions.utility.SFXAction;
import com.megacrit.cardcrawl.characters.AbstractPlayer;
import com.megacrit.cardcrawl.monsters.AbstractMonster;
import com.megacrit.cardcrawl.vfx.combat.CleaveEffect;
import expansioncontent.expansionContentMod;
public class GuardianWhirl extends AbstractExpansionCard {
public final static String ID = makeID("GuardianWhirl");
private static final int DAMAGE = 4;
private static final int UPGRADE_DAMAGE = 1;
public GuardianWhirl() {
super(ID, 2, CardType.ATTACK, CardRarity.UNCOMMON, CardTarget.ALL_ENEMY);
tags.add(expansionContentMod.STUDY_GUARDIAN);
tags.add(expansionContentMod.STUDY);
baseDamage = DAMAGE;
this.isMultiDamage = true;
this.exhaust = true;
}
public void use(AbstractPlayer p, AbstractMonster m) {
atb(new SFXAction("ATTACK_WHIRLWIND"));
for (int i = 0; i < 4; i++) {
atb(new SFXAction("ATTACK_HEAVY"));
atb(new VFXAction(p, new CleaveEffect(), 0.1F));
atb(new com.megacrit.cardcrawl.actions.common.DamageAllEnemiesAction(p, this.multiDamage, this.damageTypeForTurn, com.megacrit.cardcrawl.actions.AbstractGameAction.AttackEffect.NONE));
//atb(new WaitAction(0.1f));
}
}
public void upgrade() {
if (!upgraded) {
upgradeName();
upgradeDamage(UPGRADE_DAMAGE);
}
}
}
|
[
"[email protected]"
] | |
643fa7d97d26143639239c66e35a73bab33a8d9a
|
fb3a6798436ee834ba690a3cd820320fbf726d4c
|
/src/um/Segunda.java
|
5788db9c2d3fadcfb1ac51bd582edcc4591251a6
|
[] |
no_license
|
CarolineSiqueira/POO_Java
|
3437d4d2105089be7464967017c3e26f0d629c33
|
3a4a14d1f50ac538586dc43eeec8c3fd9623a8cd
|
refs/heads/master
| 2023-04-08T13:24:28.969418 | 2021-04-19T23:56:16 | 2021-04-19T23:56:16 | 359,629,669 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 157 |
java
|
package um;
public class Segunda {
private void metodoPrivado(){
Primeiro primeiro =new Primeiro();
primeiro.metodoPublico();
}
}
|
[
"[email protected]"
] | |
11e1498803ef2b9bdac83382f9ccde3a5bf27b48
|
9cd77d33570a9e6b2b755b66499c5773e04f41c3
|
/hHYuanLing/src/main/java/com/henghao/parkland/activity/CommonWebActivity.java
|
f55d054945eb7937bce9ce8560d412310d360fb5
|
[] |
no_license
|
HengHaoYL/HHParkLand
|
fc0175ebb1472d344a53c3620907c4db53c552a7
|
85c40cd633f0b00054bd9ad47beeafc138f682b7
|
refs/heads/master
| 2021-01-20T14:40:43.163769 | 2017-05-22T08:38:10 | 2017-05-22T08:38:10 | 82,765,457 | 1 | 1 | null | 2017-02-22T05:41:51 | 2017-02-22T05:41:51 | null |
UTF-8
|
Java
| false | false | 13,692 |
java
|
/*
* 文件名:LoginActivity.java
* 版权:Copyright 2009-2010 companyName MediaNet. Co. Ltd. All Rights Reserved.
* 描述:
* 修改人:
* 修改时间:
* 跟踪单号:
* 修改单号:
* 修改内容:
*/
package com.henghao.parkland.activity;
import android.annotation.SuppressLint;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.PixelFormat;
import android.os.Build;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.KeyEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.webkit.CookieManager;
import android.webkit.JavascriptInterface;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebStorage;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import com.benefit.buy.library.utils.NSLog;
import com.benefit.buy.library.utils.tools.ToolsKit;
import com.henghao.parkland.ActivityFragmentSupport;
import com.henghao.parkland.Constant;
import com.henghao.parkland.R;
import com.henghao.parkland.utils.JsCalllAndroid;
import com.lidroid.xutils.view.annotation.ViewInject;
/**
* webview 基类activity
* @author zhangxianwen
* @version HDMNV100R001, 2015-5-14
* @see [相关类/方法]
* @since [产品/模块版本]
*/
public class CommonWebActivity extends ActivityFragmentSupport implements JsCalllAndroid {
@ViewInject(R.id.webview)
protected WebView mWebView;
private String url;
private String customHtml;
private WebSettings settings;
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.mActivityFragmentView.viewMain(R.layout.common_tecentwebview);
this.mActivityFragmentView.viewEmpty(R.layout.activity_empty);
this.mActivityFragmentView.viewEmptyGone();
this.mActivityFragmentView.viewLoading(View.VISIBLE);
this.mActivityFragmentView.getNavitionBarView().setVisibility(View.VISIBLE);
setContentView(this.mActivityFragmentView);
getWindow().setFormat(PixelFormat.TRANSLUCENT);// (这个对宿主没什么影响,建议声明)
getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
| WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
com.lidroid.xutils.ViewUtils.inject(this);
initData();
}
@Override
public void initData() {
String title = getIntent().getStringExtra(Constant.INTNET_TITLE);
initTitle(title);
this.url = getIntent().getStringExtra(Constant.INTNET_URL);
this.customHtml = getIntent().getStringExtra(Constant.INTNET_DATA);
if (ToolsKit.isEmpty(this.url) && ToolsKit.isEmpty(this.customHtml)) {
initWidget();
}
else {
urlOrData();
}
}
private void initTitle(String title) {
initWithBar();
// initWithCenterBar();
this.mLeftTextView.setVisibility(View.VISIBLE);
// mCenterTextView.setVisibility(View.GONE);
this.mLeftTextView.setText(title);
/** 导航栏 */
}
@Override
public void initWidget() {
}
@Override
public void onBackPressed() {
super.onBackPressed();
if (getIntent().getIntExtra("ONBACKFLAG", 0) == 120) {
Intent _intent = new Intent();
boolean isFirst = this.mSharedPreferences.getBoolean(Constant.APP_START_FIRST, false);
if (!isFirst) {
// 第一次启动应用,进入引导页
_intent.setClass(this, GuideActivity.class);
}
else {// 进入主页
_intent.setClass(this, MainActivity.class);
}
this.startActivity(_intent);
finishDelayed();
}
}
public void urlOrData() {
if (ToolsKit.isEmpty(this.url)) {
this.mWebView.loadDataWithBaseURL(null, this.customHtml, "text/html", "utf-8", null);
this.mActivityFragmentView.viewLoading(View.GONE);
}
else {
this.mWebView.loadUrl(this.url);
initWithContent();
}
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && this.mWebView.canGoBack()) {
this.mWebView.goBack();// 返回前一个页面
return true;
}
return super.onKeyDown(keyCode, event);
}
@SuppressWarnings("deprecation")
@SuppressLint({
"JavascriptInterface", "SetJavaScriptEnabled", "NewApi"
})
private void initWithContent() {
this.mWebView.getSettings().setJavaScriptEnabled(true);
if (Build.VERSION.SDK_INT >= 19) {
this.mWebView.getSettings().setLoadsImagesAutomatically(true);
}
else {
this.mWebView.getSettings().setLoadsImagesAutomatically(false);
}
// mWebView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
this.mWebView.requestFocus();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
this.mWebView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}
//
WebSettings webSettings = this.mWebView.getSettings();
// 开启Javascript脚本
webSettings.setJavaScriptEnabled(true);
// 启用localStorage 和 essionStorage
webSettings.setDomStorageEnabled(true);
// 开启应用程序缓存
webSettings.setAppCacheEnabled(true);
webSettings.setAppCachePath(Constant.CACHE_DIR_PATH_WEB);
webSettings.setCacheMode(WebSettings.LOAD_DEFAULT);
webSettings.setAppCacheMaxSize(1024 * 1024 * 50);// 设置缓冲大小,我设的是10M
webSettings.setAllowFileAccess(true);
// 启用Webdatabase数据库
webSettings.setDatabaseEnabled(true);
webSettings.setDatabasePath(Constant.DB_DIR_PATH);// 设置数据库路径
// 启用地理定位
webSettings.setGeolocationEnabled(true);
// 设置定位的数据库路径
webSettings.setGeolocationDatabasePath(Constant.DB_DIR_PATH);
// 开启插件(对flash的支持)
// webSettings.setPluginsEnabled(true);
webSettings.setRenderPriority(WebSettings.RenderPriority.HIGH);
webSettings.setJavaScriptCanOpenWindowsAutomatically(true);
webSettings.setDefaultTextEncodingName("UTF-8");// 设置字符编码
this.mWebView.setScrollBarStyle(View.SCROLLBARS_INSIDE_INSET);// 滚动条风格,为0指滚动条不占用空间,直接覆盖在网页上
this.mWebView.setWebChromeClient(this.mChromeClient);
this.mWebView.setWebViewClient(this.mWebViewClient);
// 增加接口方法,让html页面调用
this.mWebView.addJavascriptInterface(this, Constant.JS_ClALL_ANDROID);
// mWebView.setBackgroundColor(0); // 设置背景色
// mWebView.setBackgroundResource(R.drawable.background);
this.mWebView.setBackgroundColor(getResources().getColor(R.color.app_bg));
webSettings.setBuiltInZoomControls(true);
webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NARROW_COLUMNS);
webSettings.setUseWideViewPort(true);
webSettings.setLoadWithOverviewMode(true);
webSettings.setSavePassword(true);
webSettings.setSaveFormData(true);
webSettings.setBuiltInZoomControls(false);
webSettings.setSupportZoom(false);
webSettings.setDisplayZoomControls(false);
// webSettings.setTextSize(WebSettings.TextSize.LARGER);
}
private final WebViewClient mWebViewClient = new WebViewClient() {
// 处理页面导航
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
CommonWebActivity.this.mWebView.loadUrl(url);
// 记得消耗掉这个事件。给不知道的朋友再解释一下,
// Android中返回True的意思就是到此为止吧,事件就会不会冒泡传递了,我们称之为消耗掉
return true;
}
@Override
public void onPageFinished(WebView view, String url) {
super.onPageFinished(view, url);
if (!view.getSettings().getLoadsImagesAutomatically()) {
view.getSettings().setLoadsImagesAutomatically(true);
}
// 加载完成
CommonWebActivity.this.mActivityFragmentView.viewLoading(View.GONE);
CommonWebActivity.this.mActivityFragmentView.viewEmptyGone();
CookieManager cookieManager = CookieManager.getInstance();
String cookieStr = cookieManager.getCookie(url);
getLoginUserSharedPre().edit().putString("Cookie", cookieStr).commit();
NSLog.e(this, "CookieStr:" + cookieStr);
}
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
super.onPageStarted(view, url, favicon);
}
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {// 加载失败
super.onReceivedError(view, errorCode, description, failingUrl);
CommonWebActivity.this.mActivityFragmentView.viewLoading(View.GONE);
CommonWebActivity.this.mActivityFragmentView.viewMainGone();
NSLog.e(this, "errorCode:" + errorCode);
}
};
private WebChromeClient mChromeClient = new WebChromeClient() {
private View myView = null;
private CustomViewCallback myCallback = null;
// // 配置权限 (在WebChromeClinet中实现)
// @Override
// public void onGeolocationPermissionsShowPrompt(String origin,
// GeolocationPermissions.Callback callback) {
// callback.invoke(origin, true, false);
// super.onGeolocationPermissionsShowPrompt(origin, callback);
// }
// 扩充数据库的容量(在WebChromeClinet中实现)
@SuppressWarnings("deprecation")
@Override
public void onExceededDatabaseQuota(String url, String databaseIdentifier, long currentQuota,
long estimatedSize, long totalUsedQuota, WebStorage.QuotaUpdater quotaUpdater) {
quotaUpdater.updateQuota(estimatedSize * 2);
}
// 扩充缓存的容量
@SuppressWarnings("deprecation")
@Override
public void onReachedMaxAppCacheSize(long spaceNeeded, long totalUsedQuota, WebStorage.QuotaUpdater quotaUpdater) {
quotaUpdater.updateQuota(spaceNeeded * 2);
}
// Android 使WebView支持HTML5 Video(全屏)播放的方法
@Override
public void onShowCustomView(View view, CustomViewCallback callback) {
if (this.myCallback != null) {
this.myCallback.onCustomViewHidden();
this.myCallback = null;
return;
}
ViewGroup parent = (ViewGroup) CommonWebActivity.this.mWebView.getParent();
parent.removeView(CommonWebActivity.this.mWebView);
parent.addView(view);
this.myView = view;
this.myCallback = callback;
CommonWebActivity.this.mChromeClient = this;
}
@Override
public void onHideCustomView() {
if (this.myView != null) {
if (this.myCallback != null) {
this.myCallback.onCustomViewHidden();
this.myCallback = null;
}
ViewGroup parent = (ViewGroup) this.myView.getParent();
parent.removeView(this.myView);
parent.addView(CommonWebActivity.this.mWebView);
this.myView = null;
}
}
};
@Override
protected void onDestroy() {
super.onDestroy();
this.mWebView.removeAllViews();
this.mWebView.destroy();
}
@Override
@JavascriptInterface
public void send(String data, Object callBack) {
NSLog.e(this, "home data:" + data + ";callBack:" + callBack);
if (!ToolsKit.isEmpty(data)) {
String[] urlString = data.split("#");
if (!ToolsKit.isEmpty(urlString)) {
if (urlString.length > 1) {
String back = urlString[1];
if (!ToolsKit.isEmpty(back) && "back".equals(back)) {
this.mHandler.sendEmptyMessage(102);
}
}
if ("PageDetail".equals(urlString[0])) {
Message msg = new Message();
msg.what = 103;
msg.obj = urlString;
this.mHandler.sendMessage(msg);
}
else if ("SearchSuccess".equals(urlString[0])) {
Message msg = new Message();
msg.what = 104;
msg.obj = urlString;
this.mHandler.sendMessage(msg);
}
else {
Message msg = new Message();
msg.what = 101;
msg.obj = urlString;
this.mHandler.sendMessage(msg);
}
}
}
}
@SuppressLint("HandlerLeak")
Handler mHandler = new Handler() {
@Override
public void handleMessage(android.os.Message msg) {
Intent intent = new Intent();
switch (msg.what) {
case 101:
String[] urlString = (String[]) msg.obj;
try {
String clazzString = "com.freemode.shopping.activity." + urlString[0] + "Activity";
Class<?> clazz = Class.forName(clazzString);
intent.setClass(CommonWebActivity.this, clazz);
if (urlString.length > 1) {
intent.putExtra(Constant.HC_JS_DATA_TITLE, urlString[1]);
}
if (urlString.length > 2) {
// 传递数据
intent.putExtra(Constant.HC_JS_DATA, urlString[2]);
}
startActivity(intent);
}
catch (ClassNotFoundException e) {
NSLog.e(this, e.getMessage());
msg("加载出错");
}
break;
case 102:
finish();
break;
case 103:
// //向服务端请求得到商品model和店铺model,然后跳转到商品详情
// String[] urlStrings = (String[]) msg.obj;
// intent.setClass(CommonWebActivity.this,
// PageDetailActivity.class);
// if (urlStrings.length > 1) {
// intent.putExtra(Constant.HC_JS_DATA_TITLE, urlStrings[1]);
// }
// if (urlStrings.length > 2) {
// intent.putExtra(Constant.HC_JS_DATA, urlStrings[2]);
// }
// startActivityForResult(intent,
// Constant.SCANNIN_GREQUEST_CODE);
break;
case 104:
// 传统分类id,跳转到搜索分类页面
// //向服务端请求得到商品model和店铺model,然后跳转到商品详情
// String[] classString = (String[]) msg.obj;
// intent.setClass(CommonWebActivity.this,
// SearchSuccessActivity.class);
// if (classString.length > 1) {
// intent.putExtra(Constant.HC_JS_DATA_TITLE, classString[1]);
// }
// if (classString.length > 2) {
// intent.putExtra(Constant.HC_JS_DATA, classString[2]);
// }
// intent.putExtra("FLAG", 120);//类别查询
// startActivityForResult(intent,
// Constant.SCANNIN_GREQUEST_CODE);
break;
case 105:
break;
default:
break;
}
};
};
}
|
[
"[email protected]"
] | |
1ab58536dd6987fa5a9fb7efe412e54176596544
|
ea24f295659f462a99284ecb608b799a3a70f6bb
|
/src/my/sunny/communication/message/MessageUtil.java
|
3fd997852ae56faddb4326c8f4cfc20a21d01ded
|
[
"MIT"
] |
permissive
|
bluehandle-open/bluehandle-pc
|
9cfb21e4e893be9f05b67dce8567551e07d0b0b6
|
0d03eb04082bc54fc9f7014b45ee6bde884eaa62
|
refs/heads/master
| 2023-08-27T09:05:46.905632 | 2021-11-04T03:15:40 | 2021-11-04T03:15:40 | 423,163,007 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,619 |
java
|
package my.sunny.communication.message;
import java.awt.Robot;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import my.sunny.IBluetoothConst;
import my.sunny.util.KeyProcessUtil;
public class MessageUtil implements IBluetoothConst {
private MessageUtil() {
}
public static AbstractMessage parse(byte[] totalMessge) {
AbstractMessage message = null;
if (totalMessge != null && totalMessge.length > 1) {
byte type = totalMessge[0];
//byte totalLen = totalMessge[0];
if (type == recieveKey) {//��������¼�
message = new ReciveKey(totalMessge);
} else if (type == FINISH_SOCKET) {
message = new FinishMessage();
} else {
System.out.println("unsupport message type:"+type);
}
}
return message;
}
/**
* 检查是否是合法的服务器
*
* @param is 输入流
*
*/
public static boolean validServer(InputStream is) {
boolean hasInited = false;
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
String beginMsg = reader.readLine();
System.out.println(beginMsg);
if (IBluetoothConst.serverSign.equals(beginMsg)) {
//os.write(clientConnectResponse.getBytes());
System.out.println("is a valid server.");
hasInited = true;
} else {
System.out.println("not a valid server.");
}
} catch (IOException e) {
e.printStackTrace();
}
return hasInited;
}
public static boolean processMessage(Robot robot,InputStream is)
throws IOException {
boolean isFinished = false;
// BufferedReader BufferedReader = new BufferedReader(new InputStreamReader(is));
//String messageStr = brd.readLine();
DataInputStream in = new DataInputStream(is);
byte type = in.readByte();
AbstractMessage message = null;
switch(type) {
case recieveKey:
byte totalLen = in.readByte();
if (totalLen > 0) {
byte[] totalMessge = new byte[totalLen];
totalMessge[0] = type;
totalMessge[1] = totalLen;
in.read(totalMessge, 2, totalLen-2);
message = new ReciveKey(totalMessge);
System.out.println("get a key event.");
KeyProcessUtil.fireKeyEvent(robot,(ReciveKey)message);
}
break;
case FINISH_SOCKET:
in.readByte();//消耗掉头部的长度字节
isFinished = true;
message = new FinishMessage();
break;
case HEART_BEAT_REQ:
in.readByte();
break;
default:
System.out.println("unknown message type:" + type);
break;
}
//brd.re
// System.out.println();
return isFinished;
}
}
|
[
"[email protected]"
] | |
0a8e00b52b0f075c234b9f9373c2574bbe00f766
|
95e944448000c08dd3d6915abb468767c9f29d3c
|
/sources/com/p280ss/android/ugc/aweme/following/repository/C29607i.java
|
ba61376e77fe33d18d4f4f860d09e06da346dcbc
|
[] |
no_license
|
xrealm/tiktok-src
|
261b1faaf7b39d64bb7cb4106dc1a35963bd6868
|
90f305b5f981d39cfb313d75ab231326c9fca597
|
refs/heads/master
| 2022-11-12T06:43:07.401661 | 2020-07-04T20:21:12 | 2020-07-04T20:21:12 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 940 |
java
|
package com.p280ss.android.ugc.aweme.following.repository;
import com.bytedance.jedi.arch.ext.list.C11583n;
import kotlin.jvm.internal.C7571f;
/* renamed from: com.ss.android.ugc.aweme.following.repository.i */
public final class C29607i extends C11583n {
/* renamed from: c */
public final long f77976c;
/* renamed from: d */
public final boolean f77977d;
/* renamed from: e */
public final int f77978e;
/* renamed from: f */
public final int f77979f;
public C29607i() {
this(false, 0, 0, false, 0, 0, 63, null);
}
public C29607i(boolean z, int i, long j, boolean z2, int i2, int i3) {
super(z, i);
this.f77976c = j;
this.f77977d = z2;
this.f77978e = i2;
this.f77979f = i3;
}
public /* synthetic */ C29607i(boolean z, int i, long j, boolean z2, int i2, int i3, int i4, C7571f fVar) {
this(true, 0, 0, true, 0, 0);
}
}
|
[
"[email protected]"
] | |
671d74479c261f1b7ba6b176788b71fb72e214cd
|
d26419b9dda29bb6bf4259ef8b433f485f9a1588
|
/jakarta-module/src/main/java/inheritance/change/MixedContainer.java
|
6908f85f0cd00047cac603f19baf95178ad0f013
|
[
"Unlicense"
] |
permissive
|
ghitacornel/testJPA
|
3e9a6402422e53217bf84bd052b0a120e49d119a
|
5a93e17521c2eff30f749c4ea7a1e3d94a8c522b
|
refs/heads/master
| 2023-07-23T07:48:34.836816 | 2022-11-07T13:56:44 | 2022-11-07T13:56:44 | 118,834,487 | 0 | 2 |
Unlicense
| 2023-07-16T14:58:53 | 2018-01-24T23:18:33 |
Java
|
UTF-8
|
Java
| false | false | 1,366 |
java
|
package inheritance.change;
import inheritance.InheritanceMappedSuperClass;
import jakarta.persistence.*;
import java.util.ArrayList;
import java.util.List;
/**
* This is an entity container of other entities belonging to the same class hierarchy
*/
@Entity
public class MixedContainer extends InheritanceMappedSuperClass {
@OneToMany(cascade = CascadeType.ALL)
@JoinColumn(name = "reference_id")
final private List<ConcreteSuperClass> concreteSuperClass = new ArrayList<>();
@OneToMany(cascade = CascadeType.ALL, targetEntity = ConcreteClassA.class)
@JoinColumn(name = "reference_id_a")
final private List<ConcreteClassA> concreteClassAs = new ArrayList<>();
@OneToMany(cascade = CascadeType.ALL, targetEntity = ConcreteClassB.class)
@JoinColumn(name = "reference_id_b")
final private List<ConcreteClassB> concreteClassBs = new ArrayList<>();
@Column(nullable = false)
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<ConcreteClassB> getConcreteClassBs() {
return concreteClassBs;
}
public List<ConcreteSuperClass> getConcreteSuperClass() {
return concreteSuperClass;
}
public List<ConcreteClassA> getConcreteClassAs() {
return concreteClassAs;
}
}
|
[
"[email protected]"
] | |
0650618928f885b2c423a61be44657ff3a993e22
|
a1780458ec351ac03e1d77f4425c4cdbba38f013
|
/dbflute-jdk15-runtime/src/main/java/org/seasar/dbflute/twowaysql/exception/IfCommentWrongExpressionException.java
|
9d95d198059e0fcfeafecc35e566c3f297b9cecc
|
[
"Apache-2.0"
] |
permissive
|
seasarorg/dbflute-jdk15
|
4ed513486277c5f79ed2de5ff4a6eeeaaf84e0ff
|
ee920d7580d89725ded68c958b6788da0d574bd2
|
refs/heads/master
| 2018-12-28T05:27:19.388357 | 2014-01-18T11:49:23 | 2014-01-18T11:49:23 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,399 |
java
|
/*
* Copyright 2004-2011 the Seasar Foundation and the Others.
*
* 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.seasar.dbflute.twowaysql.exception;
/**
* The exception of when the IF comment has a wrong expression about outsideSql.
* @author jflute
*/
public class IfCommentWrongExpressionException extends RuntimeException {
/** Serial version UID. (Default) */
private static final long serialVersionUID = 1L;
/**
* Constructor.
* @param msg Exception message. (NotNull)
*/
public IfCommentWrongExpressionException(String msg) {
super(msg);
}
/**
* Constructor.
* @param msg Exception message. (NotNull)
* @param cause Throwable. (NotNull)
*/
public IfCommentWrongExpressionException(String msg, Throwable cause) {
super(msg, cause);
}
}
|
[
"[email protected]"
] | |
1c05a1d3c04cd7f70f09e72f3a7b92684972634a
|
f361d0f31f12f2a9ab03b2cae55406194afdac8a
|
/src/main/java/com/berk2s/authorizationserver/services/RefreshTokenService.java
|
b6111405a6540a379059ed64bcbc070611da6ff5
|
[] |
no_license
|
berk2s/authorization-server
|
80e85e8958705a6b66cbdc04f817f93656881fe0
|
194503fe20d6fa2dc6abdadbcef3541499f44558
|
refs/heads/main
| 2023-07-17T09:30:02.707309 | 2021-08-18T23:57:31 | 2021-08-18T23:57:31 | 356,880,374 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 361 |
java
|
package com.berk2s.authorizationserver.services;
import com.berk2s.authorizationserver.web.models.token.RefreshTokenDto;
import com.berk2s.authorizationserver.web.models.token.TokenCommand;
public interface RefreshTokenService extends TokenService {
RefreshTokenDto getToken(String token);
RefreshTokenDto createToken(TokenCommand tokenCommand);
}
|
[
"[email protected]"
] | |
f09af10e1dc2793679199c78d5e3b40223cb1794
|
b3902c092bd4a2f1ef75b2abaa953a35da6667dd
|
/backend/Spring Boot/mod4lab1-RESTConsumer/src/main/java/com/example/mod4lab1/model/Student.java
|
21cb6038561e0efcfd9a3dcb75f7028b59874a03
|
[] |
no_license
|
smolop/Full-Stack-Sopra_Steria
|
3b84c0e2e0c98e27650f3333c350cc333be3e480
|
25990154ef719721ea03511441e651795a4d2acf
|
refs/heads/main
| 2023-06-14T18:08:34.466212 | 2021-07-08T18:09:58 | 2021-07-08T18:09:58 | 377,898,305 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 360 |
java
|
package com.example.mod4lab1.model;
public class Student {
private String id;
private String name;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
|
[
"[email protected]"
] | |
cf47e1ac8a20dc24a35f0a80f4c1cffb87bb652e
|
e5db8c5e07cb90e6243c4ee87caab0453dfb1642
|
/Practical 4/Chapter5ProgrammingExercises/EvenOdd.java
|
c6551f420e694e8e014d17c85d30b635b4d9767b
|
[] |
no_license
|
Oatki21/CP2406Practicals
|
b478300339babae050a20d12da1b82752709baaf
|
7ce31af44c97b616270b300054576d5f18af7e10
|
refs/heads/master
| 2021-01-02T09:47:01.801013 | 2017-10-17T04:56:51 | 2017-10-17T04:56:51 | 99,302,328 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 396 |
java
|
import java.util.Scanner;
public class EvenOdd {
public static void main(String[] args){
Scanner input = new Scanner(System.in);
System.out.println("Please enter a number");
int number = input.nextInt();
if (number % 2 == 0)
System.out.println("That number is even");
else
System.out.println("That number is odd");
}
}
|
[
"[email protected]"
] | |
a081707be1ea37a6455a1faef569d2f9a2ddc5f6
|
7e8da562b4758c34dcfb9b6e0f54660094810ff2
|
/src/main/java/entites/Pays.java
|
3d0c0327b3ad0c36e256005b8b3750b2de23dd19
|
[] |
no_license
|
jeremy-e-f/approche-objet
|
3661d39f4e56bfa919a16760548c4618cce5086c
|
41152368150e8b723377812b0495ce2c9b6b128f
|
refs/heads/master
| 2021-06-24T08:45:00.718309 | 2019-11-27T09:54:42 | 2019-11-27T09:54:42 | 221,423,531 | 0 | 0 | null | null | null | null |
ISO-8859-1
|
Java
| false | false | 1,151 |
java
|
package entites;
public class Pays implements Comparable<Pays>{
private String nom;
private int nbHabitants;
private double PibParHabitant;
public Pays(String nom, int nbHabitants, double pibParHabitant) {
this.nom = nom;
this.nbHabitants = nbHabitants;
PibParHabitant = pibParHabitant;
}
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
public int getNbHabitants() {
return nbHabitants;
}
public void setNbHabitants(int nbHabitants) {
this.nbHabitants = nbHabitants;
}
public double getPibParHabitant() {
return PibParHabitant;
}
public void setPibParHabitant(double pibParHabitant) {
PibParHabitant = pibParHabitant;
}
public String toString(){
return nom+", nombre d'habitants: "+nbHabitants+", PIB/habitant: "+PibParHabitant;
}
@Override
/** Par ordre alphabétique */
/*public int compareTo(Pays pays) {
return nom.compareToIgnoreCase(pays.getNom());
}*/
/** Par PIB/habitant */
public int compareTo(Pays pays) {
return ((Double)PibParHabitant).compareTo(pays.getPibParHabitant());
}
}
|
[
"[email protected]"
] | |
cc32841d871c4e58c36fae0b6a0036604a13b91e
|
2535cc7e17de80552cdbd1000634c9fc6a52ebc8
|
/src/main/java/com/demo/demo/config/SpringWebConfig.java
|
acf9c6847e7eb38015227d2b2870076fdb2d5393
|
[] |
no_license
|
adamszabozd/Zuglo_Video
|
fd67370306cfa2bb3c2ea4838132b0425c87f2b5
|
4dfb8e4fa1f0fe17e20e52f90047607ee7594499
|
refs/heads/master
| 2023-07-19T12:10:53.127851 | 2021-09-14T20:30:23 | 2021-09-14T20:30:23 | 406,512,546 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,220 |
java
|
package com.demo.demo.config;
import org.springframework.context.MessageSource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.support.ReloadableResourceBundleMessageSource;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@EnableWebMvc
@Configuration
@ComponentScan({"com.demo.demo"})
public class SpringWebConfig implements WebMvcConfigurer {
@Bean
public MessageSource messageSource() {
ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource();
messageSource.setBasename("classpath:messages");
messageSource.setDefaultEncoding("UTF-8");
return messageSource;
}
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:4200")
.allowedMethods("GET", "POST", "DELETE", "PUT");
}
}
|
[
"[email protected]"
] | |
b645eece677044de410f6e9bf25d0b1195885c17
|
ecf8656cb0314655db831b828b2000287f15901e
|
/DemoAMap/AMap3DDemo/app/src/main/java/com/amap/map3d/demo/overlay/ParticleWeatherMapActivity.java
|
124ab5d67d355923c38d17c68215b446ad772889
|
[] |
no_license
|
cc-shifo/demo-test-android
|
33d66a99a179830ae978a5a6a2e437b7202cd13c
|
e4b856f4208164f6b23d08a15cafa6e338b37788
|
refs/heads/master
| 2023-09-01T09:28:31.780417 | 2023-08-31T08:04:51 | 2023-08-31T08:04:51 | 277,280,398 | 0 | 1 | null | 2021-07-21T02:12:46 | 2020-07-05T10:41:03 |
Java
|
UTF-8
|
Java
| false | false | 14,712 |
java
|
package com.amap.map3d.demo.overlay;
import android.app.Activity;
import android.os.Bundle;
import com.amap.api.maps.AMap;
import com.amap.api.maps.AMapUtils;
import com.amap.api.maps.CameraUpdateFactory;
import com.amap.api.maps.MapView;
import com.amap.api.maps.model.BitmapDescriptor;
import com.amap.api.maps.model.BitmapDescriptorFactory;
import com.amap.api.maps.model.CameraPosition;
import com.amap.api.maps.model.LatLng;
import com.amap.api.maps.model.Marker;
import com.amap.api.maps.model.MarkerOptions;
import com.amap.api.maps.model.particle.ParticleOverlay;
import com.amap.api.maps.model.particle.ParticleOverlayOptions;
import com.amap.api.maps.model.particle.ParticleOverlayOptionsFactory;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
/**
* AMapV2地图中介绍如何显示一个基本地图
*/
public class ParticleWeatherMapActivity extends Activity {
private MapView mapView;
private AMap aMap;
/**
* 当前正在显示的粒子系统
*/
private final List<ParticleOverlay> curParticleOverlayList = new ArrayList<ParticleOverlay>();
/**
* 所有粒子系统集合
*/
private final Hashtable<String, List<ParticleOverlay>> particleMaps = new Hashtable<String,
List<ParticleOverlay>>();
/**
* 图片缓存
*/
private final Hashtable<String, BitmapDescriptor> bitmapDescriptorHashtable =
new Hashtable<String, BitmapDescriptor>();
/**
* Marker 集合
*/
private final List<Marker> markerList = new ArrayList<Marker>();
/**
* 记录marker是否显示
*/
private boolean isWeatherMarkerShown = false;
/**
* 记录粒子效果显示情况
*/
private boolean isParticleOverlayShown = false;
/**
* 天气Marker显示的最大缩放级别,超过这个级别,marker会隐藏
*/
private final static int MAX_SHOW_WEATHER_MARKER_ZOOM = 7;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mapView = new MapView(this);
mapView.onCreate(savedInstanceState);// 此方法必须重写
setContentView(mapView);
init();
aMap.setOnMapLoadedListener(new AMap.OnMapLoadedListener() {
@Override
public void onMapLoaded() {
initWeather();
aMap.moveCamera(CameraUpdateFactory.zoomTo(4));
aMap.showMapText(false);
}
});
aMap.setOnMarkerClickListener(new AMap.OnMarkerClickListener() {
@Override
public boolean onMarkerClick(Marker marker) {
if (marker != null) {
aMap.animateCamera(CameraUpdateFactory.newLatLngZoom(marker.getPosition(),
MAX_SHOW_WEATHER_MARKER_ZOOM + 1));
}
return false;
}
});
aMap.setOnCameraChangeListener(new AMap.OnCameraChangeListener() {
@Override
public void onCameraChange(CameraPosition position) {
}
@Override
public void onCameraChangeFinish(CameraPosition position) {
changeWeatherMarkerState(position);
changeParticleOverlayState(position);
// 低级别不显示文字 效果更佳
aMap.showMapText(isParticleOverlayShown);
aMap.setMapType(AMap.MAP_TYPE_NIGHT);
}
});
}
/**
* 修改粒子系统的效果
*
* @param position
*/
private void changeParticleOverlayState(CameraPosition position) {
//在8-20级的级别下,展示省份/城市级别的天气图层
if (position != null) {
float zoom = position.zoom;
String key = getShowWeatherPositio(position);
if (key == null) {
return;
}
if (zoom > MAX_SHOW_WEATHER_MARKER_ZOOM) {
// 如果没有显示了进行显示操作
if (!isParticleOverlayShown) {
synchronized (particleMaps) {
showParticle(key);
}
isParticleOverlayShown = true;
}
} else {
// 如果显示了进行隐藏操作
if (isParticleOverlayShown) {
hideCurrentParticleOverlay();
isParticleOverlayShown = false;
}
}
}
}
/**
* 获取是哪里需要显示天气
*
* @param position
* @return
*/
private String getShowWeatherPositio(CameraPosition position) {
if (position == null) {
return null;
}
List<Marker> markers = aMap.getMapScreenMarkers();
// 去除离屏幕最近的marker
Marker needShowMarker = null;
float distance = 0;
for (Marker marker : markers) {
LatLng markerPos = marker.getPosition();
float curDistanct = AMapUtils.calculateLineDistance(markerPos, position.target);
if (distance == 0) {
distance = curDistanct;
needShowMarker = marker;
} else {
if (curDistanct < distance) {
needShowMarker = marker;
}
}
}
if (needShowMarker != null && needShowMarker.getObject() != null) {
return (String) needShowMarker.getObject();
}
return null;
}
/**
* 修改天气marker的显示情况
*
* @param position
*/
private void changeWeatherMarkerState(CameraPosition position) {
//.在3-7级的缩放级别下,以天气图标展示各地天气状态;
if (position != null) {
float zoom = position.zoom;
if (zoom > MAX_SHOW_WEATHER_MARKER_ZOOM) {
// 如果显示了进行隐藏操作
if (isWeatherMarkerShown) {
synchronized (markerList) {
for (Marker marker : markerList) {
marker.setVisible(false);
}
}
isWeatherMarkerShown = false;
}
} else {
// 如果没有显示了进行显示操作
if (!isWeatherMarkerShown) {
synchronized (markerList) {
for (Marker marker : markerList) {
marker.setVisible(true);
}
}
isWeatherMarkerShown = true;
}
}
}
}
/**
* 初始化添加marker
*/
private void initWeather() {
CameraPosition cameraPosition = aMap.getCameraPosition();
boolean isNeedShowWeatherMarker = false;
if (cameraPosition != null) {
isNeedShowWeatherMarker = cameraPosition.zoom <= MAX_SHOW_WEATHER_MARKER_ZOOM;
// 查看首次需不需要显示粒子效果
changeParticleOverlayState(cameraPosition);
}
for (int i = 0; i < latLngs.length; i++) {
LatLng latLng = latLngs[i];
int index = i % pngPaths.length;
// 天气状态随机选取,如果要使用到实际场景,这里需要修改成真是数据
String path = pngPaths[index];
BitmapDescriptor bitmapDescriptor = bitmapDescriptorHashtable.get(path);
if (bitmapDescriptor == null) {
bitmapDescriptor = BitmapDescriptorFactory.fromAsset(path);
bitmapDescriptorHashtable.put(path, bitmapDescriptor);
}
Marker marker =
aMap.addMarker(new MarkerOptions().position(latLng).icon(bitmapDescriptor).visible(isNeedShowWeatherMarker));
if (marker != null) {
marker.setObject(path);
markerList.add(marker);
}
}
}
/**
* 初始化AMap对象
*/
private void init() {
if (aMap == null) {
aMap = mapView.getMap();
}
}
/**
* 方法必须重写
*/
@Override
protected void onResume() {
super.onResume();
mapView.onResume();
}
/**
* 方法必须重写
*/
@Override
protected void onPause() {
super.onPause();
mapView.onPause();
}
/**
* 方法必须重写
*/
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
mapView.onSaveInstanceState(outState);
}
/**
* 方法必须重写
*/
@Override
protected void onDestroy() {
super.onDestroy();
mapView.onDestroy();
}
public void showParticle(String type) {
String key = type;
List<ParticleOverlay> particleSystemList = particleMaps.get(key);
if (particleSystemList == null) {
List<ParticleOverlayOptions> optionsList = null;
if (pngPaths[0].equals(key)) {
particleSystemList = new ArrayList<ParticleOverlay>();
//rain
optionsList =
ParticleOverlayOptionsFactory.defaultOptions(ParticleOverlayOptionsFactory.PARTICLE_TYPE_RAIN);
for (ParticleOverlayOptions options : optionsList) {
ParticleOverlay particleSystem = aMap.addParticleOverlay(options);
// 可以根据屏幕大小修改一下宽高
particleSystemList.add(particleSystem);
}
particleMaps.put(key, particleSystemList);
} else if (pngPaths[1].equals(key)) {
particleSystemList = new ArrayList<ParticleOverlay>();
//snowy
optionsList =
ParticleOverlayOptionsFactory.defaultOptions(ParticleOverlayOptionsFactory.PARTICLE_TYPE_SNOWY);
for (ParticleOverlayOptions options : optionsList) {
ParticleOverlay particleSystem = aMap.addParticleOverlay(options);
// 可以根据屏幕大小修改一下宽高
particleSystemList.add(particleSystem);
}
particleMaps.put(key, particleSystemList);
} else if (pngPaths[2].equals(key)) {
particleSystemList = new ArrayList<ParticleOverlay>();
//sun
optionsList =
ParticleOverlayOptionsFactory.defaultOptions(ParticleOverlayOptionsFactory.PARTICLE_TYPE_SUNNY);
for (ParticleOverlayOptions options : optionsList) {
ParticleOverlay particleSystem = aMap.addParticleOverlay(options);
// 可以根据屏幕大小修改一下宽高
particleSystemList.add(particleSystem);
}
particleMaps.put(key, particleSystemList);
} else if (pngPaths[3].equals(key)) {
particleSystemList = new ArrayList<ParticleOverlay>();
//haze
optionsList =
ParticleOverlayOptionsFactory.defaultOptions(ParticleOverlayOptionsFactory.PARTICLE_TYPE_HAZE);
// 雾霾由两个粒子效果组成,一个是底下滑动的背景,另一个是上面黑点
int index = 0;
for (ParticleOverlayOptions options : optionsList) {
// 可以根据屏幕大小修改一下宽高
if (index == 0) {
// 将背景图片放大,避免部分大屏幕无法铺满的问题
options.setStartParticleSize(2 * mapView.getWidth(),
2 * mapView.getHeight());
}
ParticleOverlay particleOverlay = aMap.addParticleOverlay(options);
particleSystemList.add(particleOverlay);
index++;
}
particleMaps.put(key, particleSystemList);
}
}
//隐藏之前的
hideCurrentParticleOverlay();
//记录并显示现在的
curParticleOverlayList.addAll(particleSystemList);
for (ParticleOverlay particleSystem : curParticleOverlayList) {
particleSystem.setVisible(true);
}
}
/**
* 引擎当前正在显示的粒子效果
*/
private void hideCurrentParticleOverlay() {
for (ParticleOverlay particleSystem : curParticleOverlayList) {
particleSystem.setVisible(false);
}
curParticleOverlayList.clear();
}
private final String[] pngPaths = {
"weather/baoyu.png",
"weather/daxue.png",
"weather/qing.png",
"weather/wumai.png",
};
private final LatLng[] latLngs = {
new LatLng(39.904211, 116.407394),
new LatLng(39.084158, 117.200983),
new LatLng(38.037433, 114.530235),
new LatLng(37.873499, 112.562678),
new LatLng(40.81739, 111.76629),
new LatLng(41.836175, 123.431382),
new LatLng(43.897016, 125.32568),
new LatLng(45.742366, 126.661665),
new LatLng(31.230372, 121.473662),
new LatLng(32.060875, 118.762765),
new LatLng(30.266597, 120.152585),
new LatLng(31.733806, 117.329949),
new LatLng(26.100779, 119.295143),
new LatLng(28.63666, 115.81635),
new LatLng(36.671156, 117.019915),
new LatLng(34.765869, 113.753394),
new LatLng(30.546557, 114.341745),
new LatLng(28.112743, 112.9836),
new LatLng(23.132324, 113.26641),
new LatLng(22.815478, 108.327546),
new LatLng(20.017377, 110.349228),
new LatLng(29.562849, 106.551643),
new LatLng(30.651239, 104.075809),
new LatLng(26.600055, 106.70546),
new LatLng(25.045806, 102.710002),
new LatLng(29.647535, 91.117525),
new LatLng(34.265502, 108.954347),
new LatLng(36.05956, 103.826447),
new LatLng(36.620939, 101.780268),
new LatLng(38.472641, 106.259126),
new LatLng(43.793026, 87.627704),
new LatLng(25.044332, 121.509062),
new LatLng(22.277468, 114.171203),
new LatLng(22.18683, 113.543028)
};
}
|
[
"[email protected]"
] | |
030d1bc9782451e07b089d34a2473f7d1bf4eb5a
|
65b6813a4d59c7c081eb7896d17e18cc674e30ba
|
/koma-standalone/src/main/java/de/thb/rest/JAXRSConfiguration.java
|
1c52d61ea311a31cce8437da2aa00952806979c5
|
[] |
no_license
|
DragoljubTHB/sacwa
|
91f5282f7339b2bdc105b7ec5fcfa9cd8b59a185
|
ee6df1f0c71ab6784cfd70f260e577c4f86d1879
|
refs/heads/master
| 2021-01-01T19:48:14.686437 | 2017-10-04T19:11:45 | 2017-10-04T19:11:45 | 98,689,594 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 183 |
java
|
package de.thb.rest;
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;
@ApplicationPath("resources")
public class JAXRSConfiguration extends Application {
}
|
[
"[email protected]"
] | |
1533530d9f8cfb1cd585e31995193c46b9f9032f
|
2b9d67094c04abc644676bc8a9b4a9e58bb54a4d
|
/biz/src/main/java/com/abbcc/dao/impl/SoaTemplateCriteriaDAOImpl.java
|
18fa751592996b2a2860560fbbb2092e367b1dfd
|
[
"Apache-2.0"
] |
permissive
|
baowp/platform
|
a1293443232171134f0efab1fada0d8520fe2940
|
74e99bba08b88c6287ad2a79f1075909acec2c38
|
refs/heads/master
| 2016-09-06T14:42:28.061967 | 2014-04-29T03:47:29 | 2014-04-29T03:47:29 | 19,027,584 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 713 |
java
|
/**
* Copyright (c) 2010 Abbcc Corp.
* No 225,Wen Yi RD, Hang Zhou, Zhe Jiang, China.
* All rights reserved.
*
* "SoaTemplateCriteriaDAOImpl.java is the copyrighted,
* proprietary property of Abbcc Company and its
* subsidiaries and affiliates which retain all right, title and interest
* therein."
*
* Revision History
*
* Date Programmer Notes
* --------- --------------------- --------------------------------------------
* 2010-4-23 baowp initial
*/
package com.abbcc.dao.impl;
import com.abbcc.dao.SoaTemplateCriteriaDAO;
public class SoaTemplateCriteriaDAOImpl extends BaseDAOImpl implements
SoaTemplateCriteriaDAO {
}
|
[
"[email protected]"
] | |
5b6ff0fc6027d991d2765f52804147ee48f53428
|
5407585b7749d94f5a882eee6f7129afc6f79720
|
/dm-code/dm-service/src/test/java/org/finra/dm/service/helper/BusinessObjectDataInvalidateUnregisteredHelperTest.java
|
ec19666fad34629c28805a543bfbb908e38bc56b
|
[
"Apache-2.0"
] |
permissive
|
walw/herd
|
67144b0192178050118f5572c5aa271e1525e14f
|
e236f8f4787e62d5ebf5e1a55eda696d75c5d3cf
|
refs/heads/master
| 2021-01-14T14:16:23.163693 | 2015-10-08T14:23:54 | 2015-10-08T14:23:54 | 43,558,552 | 0 | 1 | null | 2015-10-02T14:50:59 | 2015-10-02T14:50:59 | null |
UTF-8
|
Java
| false | false | 48,361 |
java
|
/*
* Copyright 2015 herd contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.finra.dm.service.helper;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.apache.log4j.Logger;
import org.finra.dm.dao.S3Operations;
import org.finra.dm.model.ObjectNotFoundException;
import org.finra.dm.model.jpa.BusinessObjectDataEntity;
import org.finra.dm.model.jpa.BusinessObjectDataStatusEntity;
import org.finra.dm.model.jpa.BusinessObjectFormatEntity;
import org.finra.dm.model.jpa.StorageEntity;
import org.finra.dm.model.api.xml.BusinessObjectData;
import org.finra.dm.model.api.xml.BusinessObjectDataInvalidateUnregisteredRequest;
import org.finra.dm.model.api.xml.BusinessObjectDataInvalidateUnregisteredResponse;
import org.finra.dm.model.api.xml.BusinessObjectDataKey;
import org.finra.dm.model.api.xml.StorageUnit;
import org.finra.dm.service.AbstractServiceTest;
import org.fusesource.hawtbuf.ByteArrayInputStream;
import org.junit.After;
import org.junit.Assert;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import com.amazonaws.services.s3.model.ObjectMetadata;
import com.amazonaws.services.s3.model.PutObjectRequest;
public class BusinessObjectDataInvalidateUnregisteredHelperTest extends AbstractServiceTest
{
private static final Logger LOGGER = Logger.getLogger(BusinessObjectDataInvalidateUnregisteredHelperTest.class);
@Autowired
private S3Operations s3Operations;
@After
public void after()
{
s3Operations.rollback();
}
/**
* Test case where S3 and DM are in sync because there are no data in either S3 or DM.
* Expects no new registrations.
* This is a happy path where common response values are asserted.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataS30DM0()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions
Assert.assertNotNull("response is null", actualResponse);
Assert.assertEquals("response namespace", request.getNamespace(), actualResponse.getNamespace());
Assert.assertEquals("response business object definition name", request.getBusinessObjectDefinitionName(), actualResponse
.getBusinessObjectDefinitionName());
Assert.assertEquals("response business object format usage", request.getBusinessObjectFormatUsage(), actualResponse.getBusinessObjectFormatUsage());
Assert.assertEquals("response business object format file type", request.getBusinessObjectFormatFileType(), actualResponse
.getBusinessObjectFormatFileType());
Assert.assertEquals("response business object format version", request.getBusinessObjectFormatVersion(), actualResponse
.getBusinessObjectFormatVersion());
Assert.assertEquals("response partition value", request.getPartitionValue(), actualResponse.getPartitionValue());
Assert.assertEquals("response sub-partition values", request.getSubPartitionValues(), actualResponse.getSubPartitionValues());
Assert.assertEquals("response storage name", request.getStorageName(), actualResponse.getStorageName());
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 0, actualResponse.getRegisteredBusinessObjectDataList().size());
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* Test case where DM and S3 are in sync because both have 1 object registered.
* Expects no new data registration.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataS31DM1()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
// Given a business object format
try
{
BusinessObjectFormatEntity businessObjectFormatEntity = createBusinessObjectFormat(request);
createS3Object(businessObjectFormatEntity, request, 0);
createBusinessObjectData(businessObjectFormatEntity, request, 0, true);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 0, actualResponse.getRegisteredBusinessObjectDataList().size());
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* Test case where S3 has 1 object, and DM has no object registered.
* Expects one new registration in INVALID status.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataS31DM0()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
// Given a business object format
// Given an object in S3
BusinessObjectFormatEntity businessObjectFormatEntity;
try
{
businessObjectFormatEntity = createBusinessObjectFormat(request);
createS3Object(businessObjectFormatEntity, request, 0);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 1, actualResponse.getRegisteredBusinessObjectDataList().size());
{
BusinessObjectData businessObjectData = actualResponse.getRegisteredBusinessObjectDataList().get(0);
Assert.assertEquals("response business object data[0] version", 0, businessObjectData.getVersion());
Assert.assertEquals("response business object data[0] status", BusinessObjectDataInvalidateUnregisteredHelper.UNREGISTERED_STATUS,
businessObjectData.getStatus());
Assert.assertNotNull("response business object data[0] storage units is null", businessObjectData.getStorageUnits());
Assert.assertEquals("response business object data[0] storage units size", 1, businessObjectData.getStorageUnits().size());
{
String expectedS3KeyPrefix =
businessObjectDataHelper.buildS3KeyPrefix(businessObjectFormatEntity, businessObjectDataHelper
.createBusinessObjectDataKey(businessObjectData));
StorageUnit storageUnit = businessObjectData.getStorageUnits().get(0);
Assert.assertNotNull("response business object data[0] storage unit[0] storage directory is null", storageUnit.getStorageDirectory());
Assert.assertEquals("response business object data[0] storage unit[0] storage directory path", expectedS3KeyPrefix, storageUnit
.getStorageDirectory().getDirectoryPath());
}
}
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* Test case where S3 has 1 object, and DM has no object registered. The data has sub-partitions.
* Expects one new registration in INVALID status.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataS31DM0WithSubPartitions()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setSubPartitionValues(SUBPARTITION_VALUES);
// Given a business object format
// Given an object in S3
BusinessObjectFormatEntity businessObjectFormatEntity;
try
{
businessObjectFormatEntity = createBusinessObjectFormat(request);
createS3Object(businessObjectFormatEntity, request, 0);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions
Assert.assertNotNull("response sub-partition values is null", actualResponse.getSubPartitionValues());
Assert.assertEquals("response sub-partition values", request.getSubPartitionValues(), actualResponse.getSubPartitionValues());
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 1, actualResponse.getRegisteredBusinessObjectDataList().size());
{
BusinessObjectData businessObjectData = actualResponse.getRegisteredBusinessObjectDataList().get(0);
Assert.assertEquals("response business object data[0] version", 0, businessObjectData.getVersion());
Assert.assertEquals("response business object data[0] status", BusinessObjectDataInvalidateUnregisteredHelper.UNREGISTERED_STATUS,
businessObjectData.getStatus());
Assert.assertNotNull("response business object data[0] storage units is null", businessObjectData.getStorageUnits());
Assert.assertEquals("response business object data[0] storage units size", 1, businessObjectData.getStorageUnits().size());
{
String expectedS3KeyPrefix =
businessObjectDataHelper.buildS3KeyPrefix(businessObjectFormatEntity, businessObjectDataHelper
.createBusinessObjectDataKey(businessObjectData));
StorageUnit storageUnit = businessObjectData.getStorageUnits().get(0);
Assert.assertNotNull("response business object data[0] storage unit[0] storage directory is null", storageUnit.getStorageDirectory());
Assert.assertEquals("response business object data[0] storage unit[0] storage directory path", expectedS3KeyPrefix, storageUnit
.getStorageDirectory().getDirectoryPath());
}
}
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* Test case where S3 has 2 objects, and DM has 1 object registered.
* Expects one new registration in INVALID status.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataS32DM1()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
// Given a business object format
// Given 1 business object data registered
// Given 2 S3 objects
BusinessObjectFormatEntity businessObjectFormatEntity;
try
{
businessObjectFormatEntity = createBusinessObjectFormat(request);
createBusinessObjectData(businessObjectFormatEntity, request, 0, true);
createS3Object(businessObjectFormatEntity, request, 0);
createS3Object(businessObjectFormatEntity, request, 1);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 1, actualResponse.getRegisteredBusinessObjectDataList().size());
{
BusinessObjectData businessObjectData = actualResponse.getRegisteredBusinessObjectDataList().get(0);
Assert.assertEquals("response business object data[0] version", 1, businessObjectData.getVersion());
Assert.assertEquals("response business object data[0] status", BusinessObjectDataInvalidateUnregisteredHelper.UNREGISTERED_STATUS,
businessObjectData.getStatus());
Assert.assertNotNull("response business object data[0] storage units is null", businessObjectData.getStorageUnits());
Assert.assertEquals("response business object data[0] storage units size", 1, businessObjectData.getStorageUnits().size());
{
String expectedS3KeyPrefix =
businessObjectDataHelper.buildS3KeyPrefix(businessObjectFormatEntity, businessObjectDataHelper
.createBusinessObjectDataKey(businessObjectData));
StorageUnit storageUnit = businessObjectData.getStorageUnits().get(0);
Assert.assertNotNull("response business object data[0] storage unit[0] storage directory is null", storageUnit.getStorageDirectory());
Assert.assertEquals("response business object data[0] storage unit[0] storage directory path", expectedS3KeyPrefix, storageUnit
.getStorageDirectory().getDirectoryPath());
}
}
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* Test case where S3 has 2 objects, but DM has no object registered.
* Expects 2 new registrations in INVALID status.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataS32DM0()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
// Given a business object format
// Given 1 business object data registered
// Given 2 S3 objects
BusinessObjectFormatEntity businessObjectFormatEntity;
try
{
businessObjectFormatEntity = createBusinessObjectFormat(request);
createS3Object(businessObjectFormatEntity, request, 0);
createS3Object(businessObjectFormatEntity, request, 1);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 2, actualResponse.getRegisteredBusinessObjectDataList().size());
// Assert first data registered
{
BusinessObjectData businessObjectData = actualResponse.getRegisteredBusinessObjectDataList().get(0);
Assert.assertEquals("response business object data[0] version", 0, businessObjectData.getVersion());
Assert.assertEquals("response business object data[0] status", BusinessObjectDataInvalidateUnregisteredHelper.UNREGISTERED_STATUS,
businessObjectData.getStatus());
Assert.assertNotNull("response business object data[0] storage units is null", businessObjectData.getStorageUnits());
Assert.assertEquals("response business object data[0] storage units size", 1, businessObjectData.getStorageUnits().size());
{
String expectedS3KeyPrefix =
businessObjectDataHelper.buildS3KeyPrefix(businessObjectFormatEntity, businessObjectDataHelper
.createBusinessObjectDataKey(businessObjectData));
StorageUnit storageUnit = businessObjectData.getStorageUnits().get(0);
Assert.assertNotNull("response business object data[0] storage unit[0] storage directory is null", storageUnit.getStorageDirectory());
Assert.assertEquals("response business object data[0] storage unit[0] storage directory path", expectedS3KeyPrefix, storageUnit
.getStorageDirectory().getDirectoryPath());
}
}
// Assert second data registered
{
BusinessObjectData businessObjectData = actualResponse.getRegisteredBusinessObjectDataList().get(1);
Assert.assertEquals("response business object data[1] version", 1, businessObjectData.getVersion());
Assert.assertEquals("response business object data[1] status", BusinessObjectDataInvalidateUnregisteredHelper.UNREGISTERED_STATUS,
businessObjectData.getStatus());
Assert.assertNotNull("response business object data[1] storage units is null", businessObjectData.getStorageUnits());
Assert.assertEquals("response business object data[1] storage units size", 1, businessObjectData.getStorageUnits().size());
{
String expectedS3KeyPrefix =
businessObjectDataHelper.buildS3KeyPrefix(businessObjectFormatEntity, businessObjectDataHelper
.createBusinessObjectDataKey(businessObjectData));
StorageUnit storageUnit = businessObjectData.getStorageUnits().get(0);
Assert.assertNotNull("response business object data[1] storage unit[0] storage directory is null", storageUnit.getStorageDirectory());
Assert.assertEquals("response business object data[1] storage unit[0] storage directory path", expectedS3KeyPrefix, storageUnit
.getStorageDirectory().getDirectoryPath());
}
}
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* Test case where S3 has 1 object, and DM has no object registered.
* The S3 object is registered under version 1 so there is a gap for version 0 of registration.
* Expects no new registrations since the API does not consider the S3 objects after a gap.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataS31DM0WithGap()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setSubPartitionValues(SUBPARTITION_VALUES);
// Given a business object format
// Given an object in S3
BusinessObjectFormatEntity businessObjectFormatEntity;
try
{
businessObjectFormatEntity = createBusinessObjectFormat(request);
createS3Object(businessObjectFormatEntity, request, 1);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 0, actualResponse.getRegisteredBusinessObjectDataList().size());
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* The prefix search for S3 object should match prefixed directories, not sub-strings.
* For example:
* - If a S3 object exists with key "c/b/aa/test.txt"
* - If a search for prefix "c/b/a" is executed
* - The S3 object should NOT match, since it is a prefix, but not a prefix directory.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataS3PrefixWithSlash()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
// Given a business object format
// Given an object in S3
BusinessObjectFormatEntity businessObjectFormatEntity;
try
{
businessObjectFormatEntity = createBusinessObjectFormat(request);
request.setPartitionValue("AA"); // Create S3 object which is contains the partition value as substring
createS3Object(businessObjectFormatEntity, request, 0);
request.setPartitionValue("A"); // Send request with substring
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions, expect no data updates since nothing should match
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 0, actualResponse.getRegisteredBusinessObjectDataList().size());
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* Asserts that namespace requiredness validation is working.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationNamespaceRequired()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setNamespace(BLANK_TEXT);
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The namespace is required", e.getMessage());
}
}
/**
* Asserts that business object definition name requiredness validation is working.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationBusinessObjectDefinitionNameRequired()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setBusinessObjectDefinitionName(BLANK_TEXT);
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The business object definition name is required", e.getMessage());
}
}
/**
* Asserts that business object format usage requiredness validation is working.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationBusinessObjectFormatUsageRequired()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setBusinessObjectFormatUsage(BLANK_TEXT);
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The business object format usage is required", e.getMessage());
}
}
/**
* Business object format must exist for this API to work
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationBusinessObjectFormatMustExist()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Modify a parameter specific to a format to reference a format that does not exist
request.setBusinessObjectFormatFileType("DOES_NOT_EXIST");
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a ObjectNotFoundException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", ObjectNotFoundException.class, e.getClass());
Assert
.assertEquals(
"thrown exception message", "Business object format with namespace \"" + request.getNamespace() + "\", business object definition name \""
+ request.getBusinessObjectDefinitionName() + "\", format usage \"" + request.getBusinessObjectFormatUsage()
+ "\", format file type \"" + request.getBusinessObjectFormatFileType() + "\", and format version \""
+ request.getBusinessObjectFormatVersion() + "\" doesn't exist.", e.getMessage());
}
}
/**
* Asserts that business object format file type requiredness validation is working.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationBusinessObjectFormatFileTypeRequired()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setBusinessObjectFormatFileType(BLANK_TEXT);
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The business object format file type is required", e.getMessage());
}
}
/**
* Asserts that business object format version requiredness validation is working.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationBusinessObjectFormatVersionRequired()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// nullify version after format is created so that the format is created correctly.
request.setBusinessObjectFormatVersion(null);
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The business object format version is required", e.getMessage());
}
}
/**
* Asserts that business object format version positive validation is working.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationBusinessObjectFormatVersionNegative()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setBusinessObjectFormatVersion(-1);
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The business object format version must be greater than or equal to 0", e.getMessage());
}
}
/**
* Asserts that partition value requiredness validation is working.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationPartitionValueRequired()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setPartitionValue(BLANK_TEXT);
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The partition value is required", e.getMessage());
}
}
/**
* Asserts that storage name requiredness validation is working.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationStorageNameRequired()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setStorageName(BLANK_TEXT);
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The storage name is required", e.getMessage());
}
}
/**
* Storage must exist for this API to work.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationStorageMustExist()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setStorageName("DOES_NOT_EXIST");
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a ObjectNotFoundException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", ObjectNotFoundException.class, e.getClass());
Assert.assertEquals("thrown exception message", "Storage with name \"" + request.getStorageName() + "\" doesn't exist.", e.getMessage());
}
}
/**
* Storage is found, but the storage platform is not S3.
* This API only works for S3 platforms since it requires S3 key prefix.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationStoragePlatformMustBeS3()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setStorageName(STORAGE_NAME);
// Given a business object format
try
{
createStorageEntity(request.getStorageName(), "NOT_S3");
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The specified storage '" + request.getStorageName() + "' is not a S3 storage platform.", e
.getMessage());
}
}
/**
* If sub-partition values are given, they must not be blank.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataValidationSubPartitionValueNotBlank()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setSubPartitionValues(Arrays.asList(BLANK_TEXT));
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// Call the API
try
{
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
Assert.fail("expected a IllegalArgumentException, but no exception was thrown");
}
catch (Exception e)
{
Assert.assertEquals("thrown exception type", IllegalArgumentException.class, e.getClass());
Assert.assertEquals("thrown exception message", "The sub-partition value [0] must not be blank", e.getMessage());
}
}
/**
* Asserts that values are trimmed before the request is processed.
*/
@Test
public void testInvalidateUnregisteredBusinessObjectDataTrim()
{
LOGGER.debug("start");
BusinessObjectDataInvalidateUnregisteredRequest request = getDefaultBusinessObjectDataInvalidateUnregisteredRequest();
request.setSubPartitionValues(SUBPARTITION_VALUES);
// Given a business object format
try
{
createBusinessObjectFormat(request);
}
catch (Exception e)
{
throw new IllegalArgumentException("Test failed during setup. Most likely setup or developer error.", e);
}
// pad string values with white spaces
request.setNamespace(BLANK_TEXT + request.getNamespace() + BLANK_TEXT);
request.setBusinessObjectDefinitionName(BLANK_TEXT + request.getBusinessObjectDefinitionName() + BLANK_TEXT);
request.setBusinessObjectFormatFileType(BLANK_TEXT + request.getBusinessObjectFormatFileType() + BLANK_TEXT);
request.setBusinessObjectFormatUsage(BLANK_TEXT + request.getBusinessObjectFormatUsage() + BLANK_TEXT);
request.setPartitionValue(BLANK_TEXT + request.getPartitionValue() + BLANK_TEXT);
List<String> paddedSubPartitionValues = new ArrayList<>();
for (String subPartitionValue : request.getSubPartitionValues())
{
paddedSubPartitionValues.add(BLANK_TEXT + subPartitionValue + BLANK_TEXT);
}
request.setSubPartitionValues(paddedSubPartitionValues);
// Call the API
try
{
BusinessObjectDataInvalidateUnregisteredResponse actualResponse =
businessObjectDataInvalidateUnregisteredHelper.invalidateUnregisteredBusinessObjectData(request);
// Make assertions
/*
* Note: The API will modify the request to now contain the trimmed value.
*/
Assert.assertNotNull("response is null", actualResponse);
Assert.assertEquals("response namespace", request.getNamespace(), actualResponse.getNamespace());
Assert.assertEquals("response business object definition name", request.getBusinessObjectDefinitionName(), actualResponse
.getBusinessObjectDefinitionName());
Assert.assertEquals("response business object format usage", request.getBusinessObjectFormatUsage(), actualResponse.getBusinessObjectFormatUsage());
Assert.assertEquals("response business object format file type", request.getBusinessObjectFormatFileType(), actualResponse
.getBusinessObjectFormatFileType());
Assert.assertEquals("response business object format version", request.getBusinessObjectFormatVersion(), actualResponse
.getBusinessObjectFormatVersion());
Assert.assertEquals("response partition value", request.getPartitionValue(), actualResponse.getPartitionValue());
Assert.assertEquals("response sub-partition values", request.getSubPartitionValues(), actualResponse.getSubPartitionValues());
Assert.assertEquals("response storage name", request.getStorageName(), actualResponse.getStorageName());
Assert.assertNotNull("response business object datas is null", actualResponse.getRegisteredBusinessObjectDataList());
Assert.assertEquals("response business object datas size", 0, actualResponse.getRegisteredBusinessObjectDataList().size());
}
catch (Exception e)
{
e.printStackTrace();
Assert.fail("unexpected exception thrown: " + e);
}
}
/**
* Creates an object in S3 with the prefix constructed from the given parameters.
* The object's full path will be {prefix}/{UUID}
*
* @param businessObjectFormatEntity business object format
* @param request request with partition values and storage
* @param businessObjectDataVersion business object data version to put
*/
private void createS3Object(BusinessObjectFormatEntity businessObjectFormatEntity, BusinessObjectDataInvalidateUnregisteredRequest request,
int businessObjectDataVersion)
{
StorageEntity storageEntity = dmDao.getStorageByName(request.getStorageName());
String s3BucketName = dmDaoHelper.getS3BucketAccessParams(storageEntity).getS3BucketName();
BusinessObjectDataKey businessObjectDataKey = getBusinessObjectDataKey(request);
businessObjectDataKey.setBusinessObjectDataVersion(businessObjectDataVersion);
String s3KeyPrefix = businessObjectDataHelper.buildS3KeyPrefix(businessObjectFormatEntity, businessObjectDataKey);
String s3ObjectKey = s3KeyPrefix + "/test";
PutObjectRequest putObjectRequest = new PutObjectRequest(s3BucketName, s3ObjectKey, new ByteArrayInputStream(new byte[1]), new ObjectMetadata());
s3Operations.putObject(putObjectRequest, null);
}
/**
* Gets the {@link BusinessObjectDataKey} from the given request.
*
* @param request {@link BusinessObjectDataInvalidateUnregisteredRequest}
* @return {@link BusinessObjectDataKey} minus the version
*/
private BusinessObjectDataKey getBusinessObjectDataKey(BusinessObjectDataInvalidateUnregisteredRequest request)
{
BusinessObjectDataKey businessObjectDataKey = new BusinessObjectDataKey();
businessObjectDataKey.setNamespace(request.getNamespace());
businessObjectDataKey.setBusinessObjectDefinitionName(request.getBusinessObjectDefinitionName());
businessObjectDataKey.setBusinessObjectFormatUsage(request.getBusinessObjectFormatUsage());
businessObjectDataKey.setBusinessObjectFormatFileType(request.getBusinessObjectFormatFileType());
businessObjectDataKey.setBusinessObjectFormatVersion(request.getBusinessObjectFormatVersion());
businessObjectDataKey.setPartitionValue(request.getPartitionValue());
businessObjectDataKey.setSubPartitionValues(request.getSubPartitionValues());
return businessObjectDataKey;
}
/**
* Creates and persists a {@link BusinessObjectDataEntity} with the specified parameters.
*
* @param businessObjectFormatEntity {@link BusinessObjectFormatEntity}
* @param request {@link BusinessObjectDataInvalidateUnregisteredRequest} with bdata alt key
* @param businessObjectDataVersion bdata version
* @param latestVersion is this data the latest version?
* @return the created {@link BusinessObjectDataEntity}
*/
private BusinessObjectDataEntity createBusinessObjectData(BusinessObjectFormatEntity businessObjectFormatEntity,
BusinessObjectDataInvalidateUnregisteredRequest request, int businessObjectDataVersion, boolean latestVersion)
{
BusinessObjectDataEntity businessObjectDataEntity = new BusinessObjectDataEntity();
businessObjectDataEntity.setBusinessObjectFormat(businessObjectFormatEntity);
businessObjectDataEntity.setPartitionValue(request.getPartitionValue());
businessObjectDataEntity.setPartitionValue2(dmCollectionHelper.safeGet(request.getSubPartitionValues(), 0));
businessObjectDataEntity.setPartitionValue3(dmCollectionHelper.safeGet(request.getSubPartitionValues(), 1));
businessObjectDataEntity.setPartitionValue4(dmCollectionHelper.safeGet(request.getSubPartitionValues(), 2));
businessObjectDataEntity.setPartitionValue5(dmCollectionHelper.safeGet(request.getSubPartitionValues(), 3));
businessObjectDataEntity.setVersion(businessObjectDataVersion);
businessObjectDataEntity.setLatestVersion(latestVersion);
businessObjectDataEntity.setStatus(dmDao.getBusinessObjectDataStatusByCode(BusinessObjectDataStatusEntity.VALID));
dmDao.saveAndRefresh(businessObjectDataEntity);
return businessObjectDataEntity;
}
}
|
[
"[email protected]"
] | |
b79a46e6753b7f54d75192461e1dc48b1aea8e69
|
eacf9d8bceb8e9bd885ea77a7a3b8595826e1923
|
/app/src/main/java/com/zly/activity/base/BaseNetActivity.java
|
908421bf5429c40743e9b502a5589a870b039c1d
|
[] |
no_license
|
1014653381/zhibo
|
7b958ad2bac28d351668b2fa44054cf2e07d55b7
|
4e8a24e9a206172a335878b500113d43ef2fb322
|
refs/heads/master
| 2020-12-25T01:32:16.788346 | 2017-08-14T06:33:03 | 2017-08-14T06:33:03 | 100,222,461 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,773 |
java
|
package com.zly.activity.base;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import org.apache.http.HttpException;
import java.net.UnknownHostException;
import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
/**
* date: Created xiaoyuan on 16/11/05.
*/
public abstract class BaseNetActivity<T> extends BaseLoadActivity implements Callback<T> {
private final int mNetWorkTryCount = 3;
private int mNetWorkTryNum = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
initViews();
load();
}
protected abstract void initViews();
private Handler mNetTryHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
loadData();
}
};
private void load() {
showLoading();
loadData();
}
protected abstract void loadData();
protected abstract void processData(T t);
@Override
public void refreshData() {
load();
}
@Override
public void onResponse(Call<T> call, Response<T> response) {
T t = response.body();
processData(t);
}
@Override
public void onFailure(Call<T> call, Throwable throwable) {
throwable.printStackTrace();
if (throwable instanceof HttpException || throwable instanceof UnknownHostException) {
showNetError();
com.zly.utils.ToastUtils.showShort("请检查您的网络连接");
} else if (throwable instanceof IllegalStateException) {
showNoData();
} else if (++mNetWorkTryNum < mNetWorkTryCount) {
mNetTryHandler.sendEmptyMessageDelayed(0, 1000);
}
}
}
|
[
"洋爸爸"
] |
洋爸爸
|
a292b022da5e65b2044cb292628ffa1fd98e246d
|
9272784a4043bb74a70559016f5ee09b0363f9d3
|
/modules/xiaomai-admin/src/main/java/com/antiphon/xiaomai/apps/action/web/hotel/HotelOrderController.java
|
0aecc2e5547b41547f74cad2dc4445a3f4bf78f9
|
[] |
no_license
|
sky8866/test
|
dd36dad7e15a5d878e599119c87c1b50bd1f2b93
|
93e1826846d83a5a1d25f069dadd169a747151af
|
refs/heads/master
| 2021-01-20T09:27:12.080227 | 2017-08-29T09:33:19 | 2017-08-29T09:33:19 | 101,595,198 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 736 |
java
|
package com.antiphon.xiaomai.apps.action.web.hotel;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping(value = "/admin/hotel/order")
public class HotelOrderController {
private final static String BASE_PATH = "hotel/";
@RequestMapping(value = "")
public String room(String active,String page,HttpServletRequest request) {
request.setAttribute("hotel_active", "active");
request.setAttribute("hotel_order_active" , "active");
request.setAttribute("page", page);
return BASE_PATH+"order";
}
}
|
[
"[email protected]"
] | |
8fec5b7d81053444280372e65e93a641e9eb5a65
|
aff8c1ddb56fbfc92484257d4de70597815ff44c
|
/Deck.java
|
c8169b6ee7f11689c6961e010e3a2bffe39f6e57
|
[] |
no_license
|
akoiv1308/Card-Game---Durak
|
7713b5efc41b24d9245bf47c8c9060d8385f2b08
|
c795220833ad0bbfd9fa272813cc8a95202a526f
|
refs/heads/master
| 2021-05-22T22:07:47.305248 | 2020-04-04T23:26:12 | 2020-04-04T23:26:12 | 253,118,138 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 4,541 |
java
|
import java.util. *;
class Deck {
// Fields //
private ArrayList<Card> cards;
private ArrayList<Card> playersDeck;
private int size;
// Constructor //
public Deck(String[] ranks, String[] suits, int[] values) {
this.playersDeck = new ArrayList<Card>();
this.cards = new ArrayList<Card>(); // Initializing field variable //
// Looping through arrays passed as parameters in the Deck constructor method and adding them consequently to ArrayList called "cards" //
for(String suit : suits){
for(String rank : ranks){
// determineValue(rank) - since both for loops are for "suits" and "ranks" array, I added another instance method as a third parameter for a new Card object that represents a card's point value //
this.cards.add(new Card(rank, suit, determineValue(rank)));
}
}
// assigning variable "size" to the size of the "cards" //
size = cards.size();
// calling shuffle method in order to randomly shuffle the deck //
shuffle();
}
// determineValue - an instance method that simply determines the card's point value and returns it //
public int determineValue(String rank) {
int value = 0;
switch(rank) {
case "2" : return value = 2;
case "3" : return value = 3;
case "4" : return value = 4;
case "5" : return value = 5;
case "6" : return value = 6;
case "7" : return value = 7;
case "8" : return value = 8;
case "9" : return value = 9;
case "10" : return value = 10;
case "J" : return value = 11;
case "Q" : return value = 12;
case "K" : return value = 13;
case "A" : return value = 14;
// if none of the following is the case, then value of 0 is assigned to the variable value //
default : return value = 0;
}
}
public ArrayList<Card> getPlayersDeck() {
for(int i = 0; i < 6; i++) {
playersDeck.add(cards.get(i));
}
return playersDeck;
}
public ArrayList<Card> deck() {
return playersDeck;
}
// shuffle - method that shuffles the deck randomly //
public void shuffle() {
for (int k = cards.size() - 1; k > 0; k--) { // starting from the index of the last element //
int howMany = k + 1; // variable responsible for the size of the deck; it is determined by adding one to the variable k which has been set to the size of the deck - 1 //
int start = 0; // starting from the first element in ArrayList //
int randPos = (int) (Math.random() * howMany) + start; // variable that randomly chooses the element of the deck by randomly selecting from the size of the deck //
Card temp = cards.get(k); // variable temp is temporary variable that get the element at index k //
cards.set(k, cards.get(randPos)); // element at index k is replaced with random element/value //
cards.set(randPos, temp); // the element at index randPos is replaced by the temporary variable, temp, which is the element at index k //
}
}
// isEmpty — This method should return true when the size of the deck is 0; false otherwise //
public boolean isEmpty() {
if(cards.size() == 0) { // if the deck is empty, return true //
return true;
}
else { // otherwise, return false //
return false;
}
}
// size — This method returns the number of cards in the deck that are left to be dealt //
public int size() {
return cards.size(); // returns deck's size //
}
// deal — This method “deals” a card by removing a card from the deck and returning it, if there are any cards in the deck left to be dealt. It returns null if the deck is empty //
public Card deal() {
if(cards.size() > 0) { // if deck's size is not empty, then decrease variable size by one and return the element at size's index //
size--;
return cards.get(size);
}
else { // otherwise, return null //
return null;
}
}
// Algorithm 2: It would be more efficient to leave the cards in the list. Instead of removing the card, simply decrement the size instance variable and then return the card at size. In this algorithm, the size instance variable does double duty; it determines which card to “deal” and it also represents how many cards in the deck are left to be dealt. This is the algorithm that you should implement.
public int varSize() {
return size; // check the value of instance variable size //
}
@Override
public String toString(){
return Arrays.toString(cards.toArray()); // converting ArrayList of cards to string //
}
}
|
[
"[email protected]"
] | |
ec263230ea1765556bffaecbe5d0d12b1b6c9173
|
8a0c96bc65072b224400b55788ae5d69ed5fc8ea
|
/Documents/workspaceMarouane/Reservation_ICC/src/main/java/icc/be/entites/Type.java
|
c3a9c8421e421ad22a422c8e6624f71ebd7d7c0e
|
[] |
no_license
|
MrOne11/R-servation
|
a3bb82bd3a6dc7d803c77a971c3530ce0c264cfa
|
715ef0e66307a03bb3ca5d2cc25c52263566a318
|
refs/heads/master
| 2020-03-27T20:36:20.871965 | 2018-09-11T12:10:46 | 2018-09-11T12:10:46 | 147,080,356 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 641 |
java
|
package icc.be.entites;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.ToString;
@Entity
@NoArgsConstructor
@Data
@ToString
@EqualsAndHashCode
public class Type {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long id;
@Column(name="INTITULE", length=50)
private String intitule;
public Type(String intitule) {
this.intitule = intitule;
}
}
|
[
"[email protected]"
] | |
1f610eb51992ef3f9d618164ff702b2b173580bd
|
23fc557f3f53a84d75a43d253cf0783f0f680af1
|
/emergency-service-model/src/main/java/com/wordpress/salaboy/model/EmergencyEntityBuilding.java
|
95c31b3a767247b9ca8f6c10bd64c1be14c5776f
|
[] |
no_license
|
technoSpino/emergency-service-drools-app
|
9cca8fcbca4965be3888fd2dc98b3b05d39330a6
|
6afccd187ee1baab200d06d056007cfad0f5e9bc
|
refs/heads/master
| 2021-01-16T00:04:04.500722 | 2011-06-23T16:04:30 | 2011-06-23T16:04:30 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 288 |
java
|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.wordpress.salaboy.model;
/**
*
* @author salaboy
*/
public interface EmergencyEntityBuilding {
public int getX();
public int getY();
public String getName();
}
|
[
"[email protected]"
] | |
10d04b427ba3b0afb7044e6b0003dc6ac776b5ab
|
6db0db8bd1ee2411c2724c0b29fb4d5604239513
|
/Android/src/android/com/example/FullScreenActivity.java
|
856c71824d35839a7cb23a5049b18dd304c5533b
|
[] |
no_license
|
avinashjgtp10/Barcode_Custom_Plugin
|
060d5e77b96b7a03c5588cbe610a69e04c97d06d
|
4496af409a6621e0225f977995e52b435acd780c
|
refs/heads/master
| 2020-03-10T21:10:21.466647 | 2018-04-15T07:31:21 | 2018-04-15T07:31:21 | 129,587,248 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,540 |
java
|
package com.example;
import android.app.Activity;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.Toast;
import com.google.zxing.Result;
import me.dm7.barcodescanner.zxing.ZXingScannerView;
import android.content.Intent;
public class FullScreenActivity extends Activity implements ZXingScannerView.ResultHandler {
private static final String TAG = "FullScreenActivity";
private ZXingScannerView mScannerView;
public static String RAW_RESULT = "";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mScannerView = new ZXingScannerView(this); // Programmatically initialize the scanner view
setContentView(mScannerView); // Set the scanner view as the content view
// Toogle autofocus:
mScannerView.setAutoFocus(true);
// this paramter will make your HUAWEI phone works great!
// mScannerView.setAspectTolerance(0.5f);
// Toggle flash:
// mScannerView.setFlash(false);
// Specify interested barcode formats:
// void setFormats(List<BarcodeFormat> formats);
}
@Override
public void onResume() {
super.onResume();
mScannerView.setResultHandler(this); // Register ourselves as a handler for scan results.
mScannerView.startCamera(); // Start camera on resume
}
@Override
public void onPause() {
super.onPause();
mScannerView.stopCamera(); // Stop camera on pause
}
@Override
public void handleResult(Result rawResult) {
// Do something with the result here
Log.d(TAG, rawResult.getText()); // Prints scan results
Log.d(TAG, rawResult.getBarcodeFormat().toString()); // Prints the scan format (qrcode, pdf417 etc.)
RAW_RESULT = rawResult.getText();
//Toast.makeText(FullScreenActivity.this, rawResult.getText() + " " + rawResult.getBarcodeFormat().toString(), Toast.LENGTH_LONG).show();
finishWithResult(rawResult.getText() ,1);
// If you would like to resume scanning, call this method below:
mScannerView.resumeCameraPreview(this);
}
private void finishWithResult(String result,int status)
{
Bundle conData = new Bundle();
conData.putString("results", result);
Intent intent = new Intent();
intent.putExtras(conData);
setResult(status, intent);
finish();
}
}
|
[
"“[email protected]”"
] | |
231b70b6a74d165640635312a202c884e85f7c98
|
66b5a9803000b765a610dc2ae82fa9c1c4682504
|
/src/main/java/clockworkmod/cards/CogToss.java
|
95336b80576cc0869f907d8b175e73830d2fa5d5
|
[] |
no_license
|
HypoSoc/ClockworkMod
|
15abeb2b79ea1d1e4dcc8d2de5f1f7db53a6118b
|
7b57e3a0bd129f682d0fd15f8c00ebfee75f68d7
|
refs/heads/master
| 2020-04-10T02:34:15.492168 | 2019-02-05T00:06:16 | 2019-02-05T00:06:16 | 160,747,418 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,328 |
java
|
package clockworkmod.cards;
import clockworkmod.actions.CreateCogInDeckAction;
import com.evacipated.cardcrawl.mod.stslib.variables.ExhaustiveVariable;
import com.megacrit.cardcrawl.actions.AbstractGameAction;
import com.megacrit.cardcrawl.actions.common.DamageAction;
import com.megacrit.cardcrawl.cards.AbstractCard;
import com.megacrit.cardcrawl.cards.DamageInfo;
import com.megacrit.cardcrawl.characters.AbstractPlayer;
import com.megacrit.cardcrawl.core.CardCrawlGame;
import com.megacrit.cardcrawl.dungeons.AbstractDungeon;
import com.megacrit.cardcrawl.localization.CardStrings;
import com.megacrit.cardcrawl.monsters.AbstractMonster;
public class CogToss extends AbstractClockworkCard {
private static final String ID = getID("CogToss");
private static final CardStrings strings = CardCrawlGame.languagePack.getCardStrings(ID);
private static final String NAME = strings.NAME;
private static final String IMG_PATH = "cards/cogtoss.png";
private static final CardType TYPE = CardType.ATTACK;
private static final CardRarity RARITY = CardRarity.COMMON;
private static final CardTarget TARGET = CardTarget.ENEMY;
private static final int COST = 1;
private static final int POWER = 6;
private static final int MAGIC = 2;
private static final int UPGRADE_BONUS = 3;
private static final int UPGRADE_MAGIC_BONUS = 1;
public CogToss()
{
super(ID, NAME, IMG_PATH, COST, strings.DESCRIPTION, TYPE, RARITY, TARGET);
this.baseDamage = POWER;
this.baseMagicNumber = MAGIC;
this.magicNumber = this.baseMagicNumber;
ExhaustiveVariable.setBaseValue(this, 2);
}
@Override
public void use(AbstractPlayer p, AbstractMonster m) {
AbstractDungeon.actionManager.addToBottom(new DamageAction(m, new DamageInfo(p, this.damage,
this.damageTypeForTurn), AbstractGameAction.AttackEffect.SLASH_VERTICAL));
AbstractDungeon.actionManager.addToBottom(new CreateCogInDeckAction(this.magicNumber));
}
public AbstractCard makeCopy()
{
return new CogToss();
}
@Override
public void upgrade() {
if (!this.upgraded)
{
upgradeName();
upgradeDamage(UPGRADE_BONUS);
upgradeMagicNumber(UPGRADE_MAGIC_BONUS);
}
}
}
|
[
"[email protected]"
] | |
c8784ef9ad6f2778fe2ec5e77ad9ecb8722ee4f7
|
4b8a2f8d9288e41aed32562fc12cff6cb34ef03f
|
/src/main/java/com/dcits/springmvc/dto/UserUpdateDTO.java
|
83dfb13e2dff0598876c3e2dfe46d0988301d963
|
[] |
no_license
|
xypxyp470/spring-mvc
|
64f8dc82d72003c945ad4edf40fc2daf5a395cb7
|
97a3add665969c3996dad8420f02395f62cb018e
|
refs/heads/master
| 2022-08-27T16:24:25.315474 | 2020-05-27T13:53:03 | 2020-05-27T13:53:03 | 267,050,271 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 758 |
java
|
package com.dcits.springmvc.dto;
public class UserUpdateDTO {
/**
* 编号
*/
private Integer id;
/**
* 账号
*/
private String username;
/**
* 密码
*/
private String password;
public Integer getId() {
return id;
}
public UserUpdateDTO setId(Integer id) {
this.id = id;
return this;
}
public String getUsername() {
return username;
}
public UserUpdateDTO setUsername(String username) {
this.username = username;
return this;
}
public String getPassword() {
return password;
}
public UserUpdateDTO setPassword(String password) {
this.password = password;
return this;
}
}
|
[
"[email protected]"
] | |
916ccaa59a36f0cf55c7de128a051e4731c8aee7
|
4699df8f9a56ec0b09e36d6089761a6d8c8ae147
|
/framework/bundles/org.jboss.tools.rsp.server.spi/src/main/java/org/jboss/tools/rsp/server/spi/servertype/IServer.java
|
0786498caeba0d9338114573a655ca1fb34e83d4
|
[] |
no_license
|
adietish/rsp-server
|
7286e042490100b5fad8accc4962b67f44332e96
|
38eb5fb0c445b96ae2468041b12eac6079bddc2c
|
refs/heads/master
| 2020-03-27T08:34:51.490734 | 2018-12-14T12:20:36 | 2018-12-14T12:20:36 | 146,269,085 | 0 | 0 | null | 2019-05-14T15:27:42 | 2018-08-27T08:27:43 |
Java
|
UTF-8
|
Java
| false | false | 1,116 |
java
|
/*******************************************************************************
* Copyright (c) 2018 Red Hat, Inc. Distributed under license by Red Hat, Inc.
* All rights reserved. This program is made available under the terms of the
* Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Red Hat, Inc.
******************************************************************************/
package org.jboss.tools.rsp.server.spi.servertype;
import org.jboss.tools.rsp.eclipse.core.runtime.CoreException;
import org.jboss.tools.rsp.eclipse.core.runtime.IProgressMonitor;
import org.jboss.tools.rsp.server.spi.model.IServerManagementModel;
public interface IServer extends IServerAttributes {
String getId();
String getTypeId();
IServerType getServerType();
IServerDelegate getDelegate();
void save(IProgressMonitor monitor) throws CoreException;
void load(IProgressMonitor monitor) throws CoreException;
void delete() throws CoreException;
IServerManagementModel getServerManagementModel();
}
|
[
"[email protected]"
] | |
a585a53c1c908eaaad0efa4eb5238bcdd7cfbf5a
|
f9ceda76221562cadf18c1e0fa07e2a3d286ac85
|
/src/main/test/DictionaryTest.java
|
487566acfcd2df00fe36d8770ba2ee1279e3284a
|
[] |
no_license
|
SaifiZhatab/zs-java-internship-zhatab
|
626684a387efb08770d65485589cbf64a5d424f5
|
e724c262abd1f1646355a3690c4558e906ad1a2a
|
refs/heads/main
| 2023-03-01T16:11:39.780319 | 2021-01-27T11:44:46 | 2021-01-27T11:44:46 | 329,830,214 | 0 | 1 | null | 2021-01-25T09:46:27 | 2021-01-15T06:38:22 |
Java
|
UTF-8
|
Java
| false | false | 1,253 |
java
|
package main.test;
import main.java.com.zs.exercise2.Dictionary;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import static org.junit.jupiter.api.Assertions.*;
class DictionaryTest {
Dictionary dictionary;
@BeforeEach
void setUp() {
dictionary = new Dictionary();
dictionary.insert("apple" ,"APPLE");
}
@Test
void insert() {
assertEquals("APPLE",dictionary.meaning("apple"));
}
@Test
void search() {
assertEquals(true,dictionary.search("apple"));
assertEquals(false, dictionary.search("dog"));
}
@Test
void meaning() {
assertEquals("APPLE",dictionary.meaning("apple"));
}
@Test
void correctWord() {
ArrayList<String> correct = new ArrayList<String>();
correct.add("apple");
assertEquals(correct,dictionary.correctWord("epple"));
}
@Test
void matchWord() {
ArrayList<String> word = new ArrayList<String>();
dictionary.insert("application", "APPLICATION");
word.add("apple");
word.add("application");
assertEquals(word,dictionary.matchWord("app"));
}
}
|
[
"[email protected]"
] | |
c492ba47e42273e639cc35feec11588950eedbdd
|
57877437b13ab31e8d1e99d9987051ce16740de3
|
/src/main/java/com/xiong/graduate/service/impl/CustomerEServiceImpl.java
|
3a9c59c7ff3eeb3af34de1164545fdbb8fe370dd
|
[] |
no_license
|
derek0x01/SpringBootDemo
|
f4341d21d96a74f97fc350f04ef3fd2122ee8319
|
35d9ee7979a776fb09563065f1f4711cd3d49532
|
refs/heads/master
| 2022-12-26T17:01:28.569150 | 2020-10-08T00:27:54 | 2020-10-08T00:27:54 | 273,390,922 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,313 |
java
|
package com.xiong.graduate.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.xiong.graduate.common.page.MyPage;
import com.xiong.graduate.common.result.AllResult;
import com.xiong.graduate.dto.BuildEDto;
import com.xiong.graduate.dto.CustomerDTO;
import com.xiong.graduate.entity.BuildE;
import com.xiong.graduate.entity.CustomerE;
import com.xiong.graduate.mapper.CustomerEMapper;
import com.xiong.graduate.service.CustomerEService;
import org.modelmapper.ModelMapper;
import org.modelmapper.TypeToken;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class CustomerEServiceImpl extends ServiceImpl<CustomerEMapper, CustomerE> implements CustomerEService {
@Autowired
private CustomerEService customerEService;
@Override
public MyPage<List> queryCustomer(Integer currentPage, Integer pageSize, String customerName) {
QueryWrapper<CustomerE> customerEQueryWrapper = new QueryWrapper<>();
if(customerName!=null) {
customerEQueryWrapper.like("customer_name", customerName);
}
Page<CustomerE> customerEPage=new Page<>(currentPage,pageSize);
IPage<CustomerE> iPage=customerEService.page(customerEPage,customerEQueryWrapper);
List<CustomerE> customerEList=iPage.getRecords();//获取所有记录
ModelMapper modelMapper =new ModelMapper();
List<CustomerDTO> customerDTOS =modelMapper.map(customerEList,new TypeToken<List<CustomerDTO>>(){}.getType());
long total = iPage.getTotal();
return new MyPage<>(customerDTOS,total);
}
@Override
public AllResult<CustomerE> addCustomer(CustomerE customerE) {
customerEService.save(customerE);
return new AllResult<>(200,"添加成功");
}
@Override
public AllResult<CustomerE> editCustomer(CustomerE customerE) {
if(customerEService.updateById(customerE)){
return new AllResult<>(200,"修改成功");
}
return new AllResult<>(500,"修改失败");
}
}
|
[
"[email protected]"
] | |
0e0b60f354bc933d31e9234c77a1d9c8373326ce
|
69a4f2d51ebeea36c4d8192e25cfb5f3f77bef5e
|
/methods/Method_45903.java
|
af6c19f937d2a1b296e033c410b1e60c18c6d222
|
[] |
no_license
|
P79N6A/icse_20_user_study
|
5b9c42c6384502fdc9588430899f257761f1f506
|
8a3676bc96059ea2c4f6d209016f5088a5628f3c
|
refs/heads/master
| 2020-06-24T08:25:22.606717 | 2019-07-25T15:31:16 | 2019-07-25T15:31:16 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 381 |
java
|
private void copyApplication(ConsumerConfig<T> consumerConfig,ReferenceConfig<T> referenceConfig){
ApplicationConfig applicationConfig=consumerConfig.getApplication();
com.alibaba.dubbo.config.ApplicationConfig dubboConfig=new com.alibaba.dubbo.config.ApplicationConfig();
dubboConfig.setName(applicationConfig.getAppName());
referenceConfig.setApplication(dubboConfig);
}
|
[
"[email protected]"
] | |
620cd35cc13fa5aadd2c1cff71395c7063d9aa3f
|
dfad05d0f946416e8119d8acaaa2959533eae0a0
|
/src/com/bupt/entity/AcessPoint.java
|
c22e4c7c58ce8d85748a5dd609ad5edd94a8c5ab
|
[] |
no_license
|
helingyu1/Server
|
c0e10eb22a1599a4af14f40874bc6aa52784bbb0
|
37a73e77dcfededff232ffa51c3e8cff7ee5fd7a
|
refs/heads/master
| 2020-07-23T10:11:15.997915 | 2016-09-09T16:41:19 | 2016-09-09T16:41:19 | 67,005,730 | 1 | 0 | null | null | null | null |
GB18030
|
Java
| false | false | 992 |
java
|
package com.bupt.entity;
import java.util.Arrays;
/**
* 该实体类,代表与服务器通信的节点
* @author helingyu
*
*/
public class AcessPoint {
private long ip;
private int port;
private String wifi_id;
private String[] recv;
public AcessPoint(long ip,int port,String wifi_id,String[] recv){
this.ip = ip;
this.port = port;
this.wifi_id = wifi_id;
this.recv = recv;
}
public long getIp() {
return ip;
}
public void setIp(long ip) {
this.ip = ip;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
public String[] getRecv() {
return recv;
}
public void setRecv(String[] recv) {
this.recv = recv;
}
public String getWifi_id() {
return wifi_id;
}
public void setWifi_id(String wifi_id) {
this.wifi_id = wifi_id;
}
@Override
public String toString() {
return "AcessPoint [ip=" + ip + ", port=" + port + ", wifi_id="
+ wifi_id + ", recv=" + Arrays.toString(recv) + "]";
}
}
|
[
"[email protected]"
] | |
820bfd528d97bb997042af5e3a592903fc0e765c
|
a2df6764e9f4350e0d9184efadb6c92c40d40212
|
/aliyun-java-sdk-sofa/src/main/java/com/aliyuncs/sofa/model/v20190815/QueryLinkeLinktLinkeiterationsResponse.java
|
583920b87b7711abbf55151d366965f5acf396f8
|
[
"Apache-2.0"
] |
permissive
|
warriorsZXX/aliyun-openapi-java-sdk
|
567840c4bdd438d43be6bd21edde86585cd6274a
|
f8fd2b81a5f2cd46b1e31974ff6a7afed111a245
|
refs/heads/master
| 2022-12-06T15:45:20.418475 | 2020-08-20T08:37:31 | 2020-08-26T06:17:49 | 290,450,773 | 1 | 0 |
NOASSERTION
| 2020-08-26T09:15:48 | 2020-08-26T09:15:47 | null |
UTF-8
|
Java
| false | false | 3,207 |
java
|
/*
* 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.aliyuncs.sofa.model.v20190815;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.sofa.transform.v20190815.QueryLinkeLinktLinkeiterationsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryLinkeLinktLinkeiterationsResponse extends AcsResponse {
private String requestId;
private String resultCode;
private String resultMessage;
private Long errorCode;
private String errorMessage;
private Long responseStatusCode;
private Boolean success;
private List<DataItem> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getResultCode() {
return this.resultCode;
}
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
public String getResultMessage() {
return this.resultMessage;
}
public void setResultMessage(String resultMessage) {
this.resultMessage = resultMessage;
}
public Long getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Long errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Long getResponseStatusCode() {
return this.responseStatusCode;
}
public void setResponseStatusCode(Long responseStatusCode) {
this.responseStatusCode = responseStatusCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String key;
private String label;
private String url;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getLabel() {
return this.label;
}
public void setLabel(String label) {
this.label = label;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
}
@Override
public QueryLinkeLinktLinkeiterationsResponse getInstance(UnmarshallerContext context) {
return QueryLinkeLinktLinkeiterationsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
[
"[email protected]"
] | |
764ab66726127dfe08171f2b888404802a9fe1eb
|
c24bec6fee66cdcbf5bf602edfd63ea454a61e67
|
/app/src/test/java/com/udacity/mlndcapstone/numtrans/ExampleUnitTest.java
|
cbfabaa0d01862b3912b621cd412400c222ced11
|
[] |
no_license
|
moster67/NumTrans
|
6110f32bff1bdd2097224da00ecfa97399bbfa28
|
e7253bb33237f12149d514270439252643f4977d
|
refs/heads/master
| 2020-04-16T21:37:15.718394 | 2017-05-05T22:14:34 | 2017-05-05T22:14:34 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 326 |
java
|
package com.udacity.mlndcapstone.numtrans;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* To work on unit tests, switch the Test Artifact in the Build Variants view.
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
|
[
"[email protected]"
] | |
e8cff247dedcc8f1132c03ab21eda772ab49df2c
|
c3af4dd55d120276084210bf1068b53395032371
|
/src/main/java/xyz/zhchenxin/leetcode/_083/Main.java
|
29a8a591a86de624face33961a2a27efed805c0b
|
[] |
no_license
|
zhchenxin/leetcode
|
d0ab6772f25b8cad08e721f70459d0efd150e6c0
|
6369c0d4b61f81b0c4463877980bb4a2a98f6190
|
refs/heads/master
| 2020-06-12T10:31:54.142609 | 2019-09-14T01:04:56 | 2019-09-14T01:04:56 | 194,272,259 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 887 |
java
|
package xyz.zhchenxin.leetcode._083;
import java.util.HashSet;
import java.util.Set;
/**
https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list/
给定一个排序链表,删除所有重复的元素,使得每个元素只出现一次。
*/
public class Main {
public static void main(String[] args) throws Exception {
}
}
class ListNode {
int val;
ListNode next;
ListNode(int x) { val = x; }
}
class Solution {
public ListNode deleteDuplicates(ListNode head) {
ListNode node = head;
ListNode pre = head; // 前一个节点
while (node!=null) {
if (pre.val == node.val) {
// 有重复的元素, 删除本节点
pre.next = node.next;
} else {
pre = node;
}
node = node.next;
}
return head;
}
}
|
[
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.