id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
b4b5d0e8-989b-443c-8d6b-7a8fb5222897
|
public java.lang.String getFinancialAccountFinancialAccountNumber() {
return this.financialAccountFinancialAccountNumber;
}
|
256220ab-03e8-4e34-b542-5f9fe0f1c521
|
public void setCustomInteger23(crmondemand.xml.customobject6.query.QueryType customInteger23) {
this.customInteger23 = customInteger23;
}
|
576f62fb-ae7e-4eba-bb96-78aa62dcee96
|
@Override
public void notifyFriends(MOB mob, String message)
{
try
{
for(final Session S : CMLib.sessions().localOnlineIterable())
{
final MOB listenerM=S.mob();
if((listenerM!=null)
&&(listenerM!=mob)
&&((!CMLib.flags().isCloaked(mob))||(CMSecurity.isASysOp(listenerM)))
&&(listenerM.isAttributeSet(MOB.Attrib.AUTONOTIFY)))
{
final PlayerStats listenerPStats=listenerM.playerStats();
if((listenerPStats!=null)
&&((listenerPStats.getFriends().contains(mob.Name())||listenerPStats.getFriends().contains("All"))))
listenerM.tell(message);
}
}
}
catch(final Exception e)
{
}
}
|
6f6380e2-83fd-42c0-acf1-a49b3ea8fa7b
|
public crmondemand.xml.customobject6.query.QueryType getCustomPickList32() {
return this.customPickList32;
}
|
aa9607a5-2091-43d2-bd01-07cac309e806
|
public void setCustomBoolean25(java.lang.Boolean customBoolean25) {
this.customBoolean25 = customBoolean25;
}
|
d1e40dbc-6ec2-4567-93a8-841232563dca
|
public java.lang.String getCustomPickList22() {
return this.customPickList22;
}
|
234004bb-6c42-4634-8e3d-5dedf340761b
|
public java.math.BigDecimal getCustomCurrency18() {
return this.customCurrency18;
}
|
31f3b0c7-cc06-42d9-a4ca-b4bbb78a4dd9
|
public void setAudioFile(File audioFile) {
this.audioFile = audioFile;
}
|
c02b6d4c-ce57-444e-9d90-8ef0ef66e723
|
public void move(int distance)
{
setLocation(getX() + distance, getY());
}
|
c4498870-9b21-4d36-9001-a7952b388f80
|
public void setPolicyStatus(crmondemand.xml.contact.query.QueryType policyStatus) {
this.policyStatus = policyStatus;
}
|
ace5ce95-5da2-42f6-8658-2b6a09a13ccc
|
public void setCustomCurrency1(java.math.BigDecimal customCurrency1) {
this.customCurrency1 = customCurrency1;
}
|
8ee448a7-2501-48b0-a179-14e3fe0b1db3
|
public void setModId(crmondemand.xml.opportunity.query.QueryType modId) {
this.modId = modId;
}
|
35066346-820b-4275-975e-839b047d8925
|
public java.util.Calendar getFinancialAccountExchangeDate() {
return this.financialAccountExchangeDate;
}
|
794ff196-25ef-487a-820a-5e78d15e8e2f
|
public void setCustomInteger18(crmondemand.xml.opportunity.query.QueryType customInteger18) {
this.customInteger18 = customInteger18;
}
|
4f0e1139-b719-4433-bb60-baaeee5cf919
|
public crmondemand.xml.contact.query.QueryType getCustomText1() {
return this.customText1;
}
|
b3808ad8-4ab3-413e-87fc-c7d1e2019890
|
public boolean updateDue(T item) throws SQLException {
item.setDue(true);
return update(item);
}
|
a43f0564-3916-40dd-901e-fd4833723d06
|
public void setCustomCurrency2(crmondemand.xml.customobject6.query.QueryType customCurrency2) {
this.customCurrency2 = customCurrency2;
}
|
00669252-5f43-45f7-ba82-0eb5c4b05e6a
|
public crmondemand.xml.opportunity.query.QueryType getCustomDate42() {
return this.customDate42;
}
|
a8c09800-b2dc-45d5-a7d5-88a7041e2780
|
public Enumeration getApplets() {
return new Vector().elements();
}
|
4467bdce-34e7-45b7-8c04-ae535e4c8e93
|
public float[] calculate(float[] x) {
int k = functions.length;
if (k == 1 && bounds.length == 0) {
if (domain[0] <= x[0] && x[0] <= domain[1]) {
return encode(x, functions[0], 0);
}
}
// Find where x finds into the following range:
// Domain0 < Bounds0 < Bounds1 < ... < Boundsk-2 < Domain1
// where k = functions length. The found bound is the equivalent function
// to use to encode the x value.
for (int b = 0; b < bounds.length; b++) {
// first sub domain
if (b == 0) {
// check if domain0 <= x < bounds0, return function if true
if (domain[0] <= x[0] && x[0] < bounds[b]) {
return encode(x, functions[b], b);
}
}
// last sub domain
if (b == k - 2) {
// check if bounds k-2 <= x <= domain 0, return function if true
if (bounds[b] <= x[0] && x[0] <= domain[1]) {
return encode(x, functions[k - 1], k - 1);
}
}
// bounds <= x < bounds b + 1, return function if true
if (bounds[b] <= x[0] && x[0] < bounds[b + 1]) {
return encode(x, functions[b], b);
}
}
return null;
}
|
388288ca-69c0-4b2d-8a24-d387bc9bfba9
|
public void setCustomNumber4(crmondemand.xml.customobject6.query.QueryType customNumber4) {
this.customNumber4 = customNumber4;
}
|
ccb575e2-7281-48de-a19c-22f98b94d138
|
public void setMDFRequestExternalSystemId(crmondemand.xml.contact.query.QueryType mDFRequestExternalSystemId) {
this.mDFRequestExternalSystemId = mDFRequestExternalSystemId;
}
|
6e16d460-8e3b-4718-bb51-f75504b6d805
|
*/
public void updateTradeRoute(TradeRoute route) {
askServer().updateTradeRoute(route);
}
|
ea6b1a6a-457e-4737-853a-01ca7a3f6e4b
|
public void setCustomNumber60(java.math.BigDecimal customNumber60) {
this.customNumber60 = customNumber60;
}
|
6f8a0419-8960-4dfd-97d7-26f73464a571
|
public crmondemand.xml.customobject3.query.QueryType getAccountStatus() {
return this.accountStatus;
}
|
01df6f78-8acb-4f02-99e7-2806435e0682
|
public void setCustomNumber55(java.math.BigDecimal customNumber55) {
this.customNumber55 = customNumber55;
}
|
808d6930-4c7e-4781-9d39-b4b70226fedf
|
public void setCustomNumber42(crmondemand.xml.customobject3.query.QueryType customNumber42) {
this.customNumber42 = customNumber42;
}
|
f6a9b4bd-4a84-4590-8c0e-3410f74280ad
|
public void setCustomDate23(crmondemand.xml.contact.query.QueryType customDate23) {
this.customDate23 = customDate23;
}
|
82b6f1de-6bb7-401f-827d-623ebdcac7a4
|
public static PrivateKey loadRSAPrivateKey(String path) throws IOException, NoSuchAlgorithmException, InvalidKeySpecException {
// Read Private Key.
File filePrivateKey = new File(path + "/private.key");
FileInputStream fis = new FileInputStream(path + "/private.key");
byte[] encodedPrivateKey = new byte[(int) filePrivateKey.length()];
fis.read(encodedPrivateKey);
fis.close();
// Generate KeyPair.
KeyFactory keyFactory = KeyFactory.getInstance(ALGORITHM);
PKCS8EncodedKeySpec privateKeySpec = new PKCS8EncodedKeySpec(
encodedPrivateKey);
PrivateKey privateKey = keyFactory.generatePrivate(privateKeySpec);
return privateKey;
}
|
c2a0937b-255a-489b-9c98-81cedccb3366
|
public void setCustomPickList21(java.lang.String customPickList21) {
this.customPickList21 = customPickList21;
}
|
a1c12eb8-4e36-4631-a3b8-7e2bf6d53839
|
public void createType(String name, String description) throws SQLException, IOException {
Connection conn = (Connection) initiateSystemDBConn()[0];
CallableStatement cs = null;
cs = conn.prepareCall("{call createType(?)}");
cs.setString(1, name);
cs.execute();
}
|
e6f854af-9faa-4ef0-b68c-d3ab58a45ad8
|
public void setCustomDate18(java.util.Calendar customDate18) {
this.customDate18 = customDate18;
}
|
3568fce2-3fe9-4e30-a318-3c79aa11b498
|
public crmondemand.xml.opportunity.query.QueryType getCustomPhone9() {
return this.customPhone9;
}
|
c07e5db7-234c-4af1-9567-e649b714fd7b
|
public crmondemand.xml.customobject3.query.QueryType getCustomNumber54() {
return this.customNumber54;
}
|
7b7a8ecd-3805-456a-ab75-b1f8aaa323e5
|
public void setCustomBoolean18(crmondemand.xml.contact.query.QueryType customBoolean18) {
this.customBoolean18 = customBoolean18;
}
|
9e181fd9-44f4-462f-b1ca-d6110b5d23dd
|
public Builder mergeFrom(JSystemPiqi.system_error other) {
if (other == JSystemPiqi.system_error.getDefaultInstance()) return this;
if (other.hasCode()) {
setCode(other.getCode());
}
if (other.hasDescription()) {
setDescription(other.getDescription());
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
|
1bb8f6f9-5aca-4ad3-83d3-a0864d635860
|
public void setCustomText6(java.lang.String customText6) {
this.customText6 = customText6;
}
|
be0e11c4-edb9-489b-95c5-2d69083a5634
|
public crmondemand.xml.customobject6.query.QueryType getCustomText71() {
return this.customText71;
}
|
83777a2e-8485-4af2-a7c1-ddbe474ad414
|
public void setCustomNumber38(java.math.BigDecimal customNumber38) {
this.customNumber38 = customNumber38;
}
|
57ef204a-1864-45bc-856f-99979f9e964f
|
public crmondemand.xml.opportunity.query.QueryType getCustomBoolean11() {
return this.customBoolean11;
}
|
de161535-2efa-4ac3-993d-1c52b4c50d81
|
public crmondemand.xml.customobject3.query.QueryType getCustomText7() {
return this.customText7;
}
|
c23b5ac4-e048-4a28-a8a2-6202c513dae4
|
final void method3849(byte i, int i_76_, Class70 class70) {
try {
if (i != 47)
((NativeToolkit) this).aFloat8087 = -0.68323714F;
anInt8036++;
method3924(false, false, i_76_, class70, false);
} catch (RuntimeException runtimeexception) {
throw Class348_Sub17.method2929(runtimeexception,
("wga.NJ(" + i + ',' + i_76_ + ','
+ (class70 != null ? "{...}"
: "null")
+ ')'));
}
}
|
a4660001-f5d9-448c-b2f6-1e8824418e1d
|
public crmondemand.xml.contact.query.QueryType getCustomObject3Id() {
return this.customObject3Id;
}
|
fc120c3c-bf72-4650-b775-59279f5ad79d
|
public crmondemand.xml.contact.query.QueryType getCustomPhone10() {
return this.customPhone10;
}
|
9f4b962c-2708-4255-83c4-918b85d7cc31
|
public java.lang.String getCreatedByExternalSystemId() {
return this.createdByExternalSystemId;
}
|
8546f463-a729-4d7e-85e6-20744aca7f03
|
public static String[] range(char start, char end)
{
if (start >= end)
throw new IllegalArgumentException("Start >= end");
String[] charsRange = new String[end - start + 1];
int idx = 0;
for (char value = start; value <= end; value++)
{
charsRange[idx++] = value + "";
}
return charsRange;
}
|
2618e649-cf75-45bd-b38f-63a632fbb04e
|
public java.lang.String getCustomPickList38() {
return this.customPickList38;
}
|
e52611c4-49cb-4a62-99e5-61fe468fe714
|
public crmondemand.xml.customobject6.query.QueryType getCustomObject14Id() {
return this.customObject14Id;
}
|
bc269866-5a0d-4f59-970c-874798f32146
|
public void setCustomText57(crmondemand.xml.customobject6.query.QueryType customText57) {
this.customText57 = customText57;
}
|
1d394e97-61ef-4208-a63c-148aee48f763
|
public int getSize() { return strings.length; }
|
1889e0c1-602f-4c05-8a4a-8ba68bc15f8b
|
private String decode(final String encodedMessage, final int assumedFirstCharacter) {
final int messageLength = encodedMessage.length();
if (messageLength == 1) {
if (encodedMessage.equals(assumedFirstCharacter + "")) {
return assumedFirstCharacter + "";
}
return "NONE";
}
final int[] encodedMessageInts = stringToIntArray(encodedMessage);
final int[] decodedMessageInts = new int[messageLength];
decodedMessageInts[0] = assumedFirstCharacter;
decodedMessageInts[1] = encodedMessageInts[0] - assumedFirstCharacter;
if (decodedMessageInts[1] != 0 && decodedMessageInts[1] != 1) {
return "NONE";
}
for (int i = 2; i < messageLength; i++) {
decodedMessageInts[i] = encodedMessageInts[i - 1] - decodedMessageInts[i - 1] -
decodedMessageInts[i - 2];
if (decodedMessageInts[i] != 0 && decodedMessageInts[i] != 1) {
return "NONE";
}
}
if (encodedMessageInts[messageLength - 1] != decodedMessageInts[messageLength - 2] +
decodedMessageInts[messageLength - 1]) {
return "NONE";
}
return intArrayToString(decodedMessageInts);
}
|
14438796-c536-48f8-bc4a-484b0df9fff5
|
public void setBrokerProfileBrokerProfileName(crmondemand.xml.customobject3.query.QueryType brokerProfileBrokerProfileName) {
this.brokerProfileBrokerProfileName = brokerProfileBrokerProfileName;
}
|
9782d83e-89bd-4849-8990-df26ab6d96ca
|
public void setCustomBoolean6(crmondemand.xml.customobject6.query.QueryType customBoolean6) {
this.customBoolean6 = customBoolean6;
}
|
2c84f954-472a-4f64-8021-e58a97e98291
|
public java.lang.Integer getCustomInteger21() {
return this.customInteger21;
}
|
c778995c-c4c5-4754-b4e9-bde18fc537f0
|
public static Proposition deriveImpliesFromForall(Proposition forallprop) {
{ List heads = Proposition.findMatchableGoals(forallprop, Logic.KWD_HEAD);
List tails = Proposition.findMatchableGoals(forallprop, Logic.KWD_TAIL);
Proposition headgoal = ((Proposition)(heads.first()));
Proposition tailgoal = ((Proposition)(tails.first()));
Proposition headproposition = ((Proposition)((forallprop.arguments.theArray)[1]));
Proposition tailproposition = ((Proposition)((forallprop.arguments.theArray)[0]));
{ boolean testValue000 = false;
testValue000 = heads.length() == 1;
if (testValue000) {
testValue000 = tails.length() == 1;
if (testValue000) {
{ boolean alwaysP000 = true;
{ Stella_Object hv = null;
Vector vector000 = headgoal.arguments;
int index000 = 0;
int length000 = vector000.length();
Stella_Object tv = null;
Vector vector001 = tailgoal.arguments;
int index001 = 0;
int length001 = vector001.length();
loop000 : for (;(index000 < length000) &&
(index001 < length001); index000 = index000 + 1, index001 = index001 + 1) {
hv = (vector000.theArray)[index000];
tv = (vector001.theArray)[index001];
if (!(Stella_Object.eqlP(hv, tv) &&
Stella_Object.isaP(hv, Logic.SGT_LOGIC_PATTERN_VARIABLE))) {
alwaysP000 = false;
break loop000;
}
}
}
testValue000 = alwaysP000;
}
if (testValue000) {
testValue000 = headgoal.arguments.length() == tailgoal.arguments.length();
if (testValue000) {
testValue000 = ((Proposition)(heads.first())) == headproposition;
if (testValue000) {
if (((Proposition)(tails.first())) == tailproposition) {
testValue000 = true;
}
else {
{
testValue000 = tailproposition.kind == Logic.KWD_AND;
if (testValue000) {
{ boolean alwaysP001 = true;
{ Stella_Object arg = null;
Vector vector002 = tailproposition.arguments;
int index002 = 0;
int length002 = vector002.length();
loop001 : for (;index002 < length002; index002 = index002 + 1) {
arg = (vector002.theArray)[index002];
if (!(arg == tailgoal)) {
alwaysP001 = false;
break loop001;
}
}
}
testValue000 = alwaysP001;
}
}
}
}
}
}
}
}
}
if (testValue000) {
return (Logic.createImpliesProposition(Proposition.extractGoalDescription(tailgoal, null), Proposition.extractGoalDescription(headgoal, null)));
}
else {
return (null);
}
}
}
}
|
82dbbd33-6afe-415c-9e89-0be8a3015409
|
public java.lang.String getMDFRequestExternalSystemId() {
return this.mDFRequestExternalSystemId;
}
|
cf7f950b-c036-4efd-b957-be74748af1ca
|
@SuppressWarnings("deprecation")
@Override
public int hashString(String s) {
byte[] b = new byte[s.length()];
// Increase speed.
// Safe if char is less than 8 bits long, for exemple for ASCII caracters.
s.getBytes(0, s.length(), b, 0);
return hashByteArray(b);
}
|
3e8c64b6-27e7-48ea-89c1-e0c119978aa9
|
public java.lang.String getOwnerEMailAddr() {
return this.ownerEMailAddr;
}
|
26d33f87-29d8-4bd9-81bf-f8f568dd3a82
|
public void setPartnerId(crmondemand.xml.customobject6.query.QueryType partnerId) {
this.partnerId = partnerId;
}
|
76360a70-1cde-48aa-bc65-097a8b43892a
|
public double getToplamMiktar() {
double toplam = 0;
for (double a : hesap) {
toplam += a;
}
return toplam;
}
|
e1a0c947-4971-4897-8a02-4b026a2728aa
|
public java.lang.String getCustomPickList15() {
return this.customPickList15;
}
|
1cf047cf-0878-4610-979b-1bb08128d096
|
public crmondemand.xml.contact.query.QueryType getOpportunityOwner() {
return this.opportunityOwner;
}
|
2b1be39c-0f2c-42d5-a7d4-42395979ed08
|
private DAOUtil() {
// Utility class, hide constructor.
}
|
ea68b8df-6d2b-40ec-8b12-9ff782576274
|
public java.lang.String getCustomPickList12() {
return this.customPickList12;
}
|
acd0260e-3a72-4137-a95e-3f1341e3fcb9
|
public void setCustomDate24(java.util.Calendar customDate24) {
this.customDate24 = customDate24;
}
|
5a110381-abd5-4bbf-853d-9906eb955d14
|
public crmondemand.xml.customobject6.query.QueryType getCustomNumber32() {
return this.customNumber32;
}
|
ed224618-d3e3-4fd6-a564-d75386d7185d
|
public void setCustomText41(java.lang.String customText41) {
this.customText41 = customText41;
}
|
0db6be39-f166-4337-a044-6a9b06158092
|
public void setCustomPickList15(crmondemand.xml.contact.query.QueryType customPickList15) {
this.customPickList15 = customPickList15;
}
|
3f621cff-d34d-4903-89b3-5dba082c9fb1
|
public java.lang.String getCustomObject12Type() {
return this.customObject12Type;
}
|
b61f68b2-52bb-46d1-995a-9f8e5038a39e
|
public void setCustomPickList19(java.lang.String customPickList19) {
this.customPickList19 = customPickList19;
}
|
d6c2a913-a565-4890-b512-fa5ece447aad
|
public java.math.BigDecimal getCustomNumber59() {
return this.customNumber59;
}
|
832dc369-54af-48e5-ba3d-6efd97a4e119
|
public void setCustomNumber4(crmondemand.xml.customobject3.query.QueryType customNumber4) {
this.customNumber4 = customNumber4;
}
|
e0380b65-d26b-460b-a774-2ab408eb64e3
|
public void setCustomText88(java.lang.String customText88) {
this.customText88 = customText88;
}
|
a54dfd8f-1aff-4a30-bbd6-fb1eb9b9ba41
|
public java.lang.String getCustomPickList117() {
return this.customPickList117;
}
|
45bc6723-dfcf-4d5f-bfcc-3aa3b8dc6001
|
public Builder setWeapon(org.bwapi.proxy.messages.GameMessages.WeaponType value) {
if (weaponBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
weapon_ = value;
onChanged();
} else {
weaponBuilder_.setMessage(value);
}
bitField0_ |= 0x00000100;
return this;
}
|
cf175d5f-2825-489f-ac41-bea47a630a1f
|
@Override
public void actionPerformed(ActionEvent e) {
if (e.getSource() == openButton) {
JFileChooser chooser = new JFileChooser();
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
chooser.setFileHidingEnabled(true);
int returnValue = chooser.showOpenDialog(null);
if (returnValue == JFileChooser.APPROVE_OPTION) {
try {
generalDestruction.initialize(chooser.getSelectedFile()
.toString());
} catch (ParserConfigurationException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (SAXException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
} else if (e.getSource() == saveAsButton) {
JFileChooser chooser = new JFileChooser();
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
chooser.setFileHidingEnabled(true);
int returnValue = chooser.showSaveDialog(null);
if (returnValue == JFileChooser.APPROVE_OPTION) {
try {
generalDestruction.saveTo(chooser.getSelectedFile()
.toString());
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (ParserConfigurationException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (TransformerException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
} else if (e.getSource() == startStopButton) {
if (physicsController.isActive()) {
physicsController.stopSimulation();
stepButton.setEnabled(true);
startStopButton.setText("Start Simulation");
} else {
stepButton.setEnabled(false);
physicsController.startSimulation();
startStopButton.setText("Stop Simulation");
}
} else if (e.getSource() == stepButton) {
if (physicsController.isActive()) {
physicsController.stopSimulation();
startStopButton.setText("Start Simulation");
}
physicsController.stepSimulation();
}
}
|
954919e6-d58b-49ef-83db-2d67566a5cc4
|
public crmondemand.xml.customobject6.query.QueryType getCustomCurrency7() {
return this.customCurrency7;
}
|
bae75601-b234-4635-b52f-0c117d03e866
|
public java.lang.String getCustomObject12ExternalSystemId() {
return this.customObject12ExternalSystemId;
}
|
6567c863-e094-4956-9323-ed087d4c5fee
|
public crmondemand.xml.contact.query.QueryType getCustomText24() {
return this.customText24;
}
|
811d9c03-4666-431a-9411-219cce54c16a
|
public void removeEntity(CogaenId entityId) {
this.entitiesToRemove.add(getEntity(entityId));
}
|
5217cfb4-b626-4dc7-b6ad-938e8a6cf031
|
public void ReInit(java.io.Reader dstream, int startline,
int startcolumn, int buffersize)
{
inputStream = dstream;
line = startline;
column = startcolumn - 1;
if (buffer == null || buffersize != buffer.length)
{
available = bufsize = buffersize;
buffer = new char[buffersize];
bufline = new int[buffersize];
bufcolumn = new int[buffersize];
}
prevCharIsLF = prevCharIsCR = false;
tokenBegin = inBuf = maxNextCharInd = 0;
bufpos = -1;
}
|
a0a2c9b4-4389-4c0b-bada-690785ce2579
|
public void setCreatedByUserSignInId(java.lang.String createdByUserSignInId) {
this.createdByUserSignInId = createdByUserSignInId;
}
|
b11cf434-d3df-4fe5-908e-132f15857ae8
|
public void gainMeso(int gain, boolean show, boolean enableActions, boolean inChat) {
if (meso + gain < 0) {
client.getSession().write(MaplePacketCreator.enableActions());
return;
}
int newVal = meso + gain;
updateSingleStat(MapleStat.MESO, newVal, enableActions);
if (show) {
client.getSession().write(MaplePacketCreator.getShowMesoGain(gain, inChat));
}
}
|
8c38c823-4d6d-4dbc-a6f6-b9c8236fe5f6
|
public void setCustomNumber26(crmondemand.xml.opportunity.query.QueryType customNumber26) {
this.customNumber26 = customNumber26;
}
|
c8a28e5a-47ec-45f2-81b5-c86640fc33ee
|
public void setCustomText9(crmondemand.xml.contact.query.QueryType customText9) {
this.customText9 = customText9;
}
|
6f18ab01-3795-4ee1-b1ab-d6d93925f6e6
|
public java.lang.String getAssetType() {
return this.assetType;
}
|
189204cf-4008-4017-9c28-c3b4c87feedc
|
public void setQuickSearch1(java.lang.String quickSearch1) {
this.quickSearch1 = quickSearch1;
}
|
16e17889-0744-49c5-9b78-5fb9797b8667
|
public crmondemand.xml.contact.query.QueryType getCustomText8() {
return this.customText8;
}
|
89e84bd0-0e4b-4c7f-9fe5-adece401f071
|
public crmondemand.xml.contact.query.QueryType getContactExternalSystemId() {
return this.contactExternalSystemId;
}
|
48df8fe2-cd3f-4dc0-b398-427009c9b6c1
|
public void setCustomNumber13(crmondemand.xml.customobject6.query.QueryType customNumber13) {
this.customNumber13 = customNumber13;
}
|
5e2e631b-cca1-4b31-b20d-ba4ad35d05f6
|
public crmondemand.xml.customobject6.query.QueryType getCourseExternalSystemId() {
return this.courseExternalSystemId;
}
|
f19ea875-0d5a-48ce-b8a8-f2bff9628abf
|
public void setCustomDate42(crmondemand.xml.contact.query.QueryType customDate42) {
this.customDate42 = customDate42;
}
|
04d09c0d-3dad-48f6-a55a-319d83031cff
|
public void clrb()
{
m6809.b = 0;
CLR_NZVC(); SEZ();
//if(m6809log!=null) fprintf(m6809log,"M6809#%d clrb :PC:%d,PPC:%d,A:%d,B:%d,D:%d,DP:%d,U:%d,S:%d,X:%d,Y:%d,CC:%d,EA:%d\n", cpu_getactivecpu(),m6809.pc,m6809.ppc,m6809.a,m6809.b,getDreg(),m6809.dp,m6809.u,m6809.s,m6809.x,m6809.y,m6809.cc,ea);
}
|
b5be141b-086f-410b-9e95-8fac1c9e2699
|
public crmondemand.xml.opportunity.query.QueryType getCustomPickList3() {
return this.customPickList3;
}
|
ba618977-255f-40c4-b7dc-c934609b344f
|
public java.lang.String getCustomText80() {
return this.customText80;
}
|
5d1f086b-57fe-4505-8980-71b65d8e349a
|
public GuiOptions(GuiScreen last) {
this();
this.last = last;
}
|
64defd90-7829-482a-839e-37c676656d1f
|
public static void main(String[] args) {
SortedArray<Integer> sa = new SortedArray<Integer>();
Scanner scan = new Scanner(System.in);
String s = scan.next();
while(!"q".equalsIgnoreCase(s)){
if("size".equalsIgnoreCase(s)){
System.out.println("size is " + sa.size());
} else if("ra".equalsIgnoreCase(s)){
sa.removeAll();
System.out.println("array has been cleared");
} else if("d".equalsIgnoreCase(s)){
for(int i=0;i<sa.size();i++){
System.out.print(sa.get(i) + " ");
}
System.out.println();
} else if(s.startsWith("f")){
try{
Integer i = Integer.parseInt(s.substring(1,s.length()));
boolean found = sa.contains(i);
System.out.println(i + (found?" was ":" was not ") + "found");
}catch(NumberFormatException e){
}
} else if(s.startsWith("r")){
try{
Integer i = Integer.parseInt(s.substring(1,s.length()));
boolean removed = sa.remove(i);
System.out.println(i + (removed?" was ":" was not ") + "removed");
}catch(NumberFormatException e){
}
} else{
try{
Integer i = Integer.parseInt(s);
boolean added = sa.add(i);
System.out.println(i + (added?" was ":" was not ") + "added");
}catch(NumberFormatException e){
}
}
s = scan.next();
}
scan.close();
}
|
aaa7d531-6114-44de-b8f2-89c6028350ee
|
public void setCustomInteger17(crmondemand.xml.contact.query.QueryType customInteger17) {
this.customInteger17 = customInteger17;
}
|
4ee917fb-d704-4a4a-b3c1-0cff1c851214
|
public float GainOfStore(Calendar date1, Calendar date2){
float sum =0;
if(date2.getTime().getTime() > date1.getTime().getTime()){
for(int i=0; i< Bills.size();i++){
if(Bills.get(i).getDate().getTime().getTime() >= date1.getTime().getTime()
&& Bills.get(i).getDate().getTime().getTime() <= date2.getTime().getTime())
sum+= Bills.get(i).GainPerBill();
}
}
return sum;
}
|
4e6935ef-f33b-46e8-a043-800732d5d283
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.bwapi.proxy.messages.TerrainMessages.internal_static_messages_Polygon_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.bwapi.proxy.messages.TerrainMessages.Polygon.class, org.bwapi.proxy.messages.TerrainMessages.Polygon.Builder.class);
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.