id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
f54253cb-52d1-4658-ab86-e4c4a934b79b
|
public crmondemand.xml.contact.query.QueryType getCustomPickList95() {
return this.customPickList95;
}
|
a94371fe-4a95-4a3b-8d99-d4f3a9ede466
|
public void setCustomNumber26(crmondemand.xml.contact.query.QueryType customNumber26) {
this.customNumber26 = customNumber26;
}
|
bf6741bb-56fa-4ab6-aa4e-b9991f8b8d34
|
public void setCustomInteger17(crmondemand.xml.customobject3.query.QueryType customInteger17) {
this.customInteger17 = customInteger17;
}
|
4cde5aa9-e2dc-4cc8-bc70-216ce6fe0073
|
public crmondemand.xml.customobject3.query.QueryType getCertficationType() {
return this.certficationType;
}
|
52014df8-9f3e-42d7-9ffe-4fc693e3b0fb
|
public void setAccountLocation(crmondemand.xml.opportunity.query.QueryType accountLocation) {
this.accountLocation = accountLocation;
}
|
eb479c07-cbc9-41b8-8ba8-17f6d3313a7d
|
public void setDealerExternalSystemId(java.lang.String dealerExternalSystemId) {
this.dealerExternalSystemId = dealerExternalSystemId;
}
|
08c268b2-4453-47d2-bdb7-b52abe90c4bb
|
public void setCustomText67(java.lang.String customText67) {
this.customText67 = customText67;
}
|
b70565ff-d00e-406d-8f10-1db540cb4ef7
|
public java.lang.Boolean getCustomBoolean21() {
return this.customBoolean21;
}
|
29ef4eb5-c73f-4a4a-bc42-093d7706da09
|
public java.lang.Integer getCustomInteger3() {
return this.customInteger3;
}
|
21cde136-13cc-4b9c-8ac6-df0c1ecade08
|
public int logIn(String userName, String password) {
try {
connect();
query("SELECT `ID`, `Password` FROM client_logger WHERE `Username` LIKE '"
+ userName + "'");
if (rowSet.first()) {
int ID = rowSet.getInt(1);
String userPass = rowSet.getString(2);
if (userPass.equals(password))
return ID;
}
} catch (Exception exception) {
System.err.println("Error querying database");
} finally {
close();
}
return LOGIN_FAILED;
}
|
61fb2247-3080-43f7-915a-4928f1079418
|
public void setProductIntegrationId(crmondemand.xml.opportunity.query.QueryType productIntegrationId) {
this.productIntegrationId = productIntegrationId;
}
|
2f9b4db9-3b67-4e50-bcf1-d805ce0eb07a
|
private void circumventFrameSizeBug(Frame frame, Dimension size) {
Container contentPane = getContentPane();
Dimension actualSize = contentPane.getSize();
if (size.equals(actualSize) || actualSize.width == 0 || actualSize.height == 0) return;
Dimension frameSize = frame.getSize();
frameSize.width += size.width - actualSize.width;
frameSize.height += size.height - actualSize.height;
frame.setSize(frameSize.width, frameSize.height);
frame.validate();
}
|
03effbf7-3204-4bdb-a14c-4d05dc7f55b6
|
public crmondemand.xml.customobject6.query.QueryType getCustomNumber18() {
return this.customNumber18;
}
|
b007e486-26ce-4936-ac13-d026436bcc2c
|
private static int[] g2HA(int yg, int mg, int dg){
int[] out = new int[4];
int yh1 = 0, mh1 = 0, dh1 = 0;
int yh2, mh2, dh2;
int yg1 = 0, mg1 = 0, dg1 = 0;
int yg2 = 0, mg2 = 0, dg2 = 0;
int found;
int flag;
long J;
double GJD;
GJD = gCalendarToJD(yg, mg, dg + 0.5);
/* find JD of Gdate */
int[] jDToHC = jDToHCalendar(GJD);
yh1 = jDToHC[0];
mh1 = jDToHC[1];
dh1 = jDToHC[2];
/* estimate the Hdate that correspond to the Gdate */
found = 0;
flag = 1;
while ((!(found == 1)) && (flag == 1))
{
/* start searching for the exact Hdate */
int[] result = h2GA(new int[]{yh1, mh1, dh1, yg1, mg1, dg1, out[3]});
yh1 = result[0];
mh1 = result[1];
dh1 = result[2];
yg1 = result[3];
mg1 = result[4];
dg1 = result[5];
out[3] = result[6];
/* compute the exact correponding Gdate for the dh1-mh1-yh1 */
if (yg1 > yg)
{
dh1--;
if (dh1 < 1)
{
dh1 = 29 + dh1;
mh1--;
}
}
if (yg1 < yg)
{
dh1++;
if (dh1 > 30)
{
dh1 = dh1 - 30;
mh1++;
}
if (dh1 == 30)
{
dh2 = 1;
mh2 = mh1 + 1;
yh2 = yh1;
if (mh2 > 12)
{
yh2++;
mh2 = mh2 - 12;
}
int[] result2 = h2GA(new int[]{yh2, mh2, dh2, yg2, mg2, dg2, out[3]});
yh2 = result2[0];
mh2 = result2[1];
dh2 = result2[2];
yg2 = result2[3];
mg2 = result2[4];
dg2 = result2[5];
out[3] = result2[6];
if (dg2 == dg)
{
mh1++;
dh1 = 1;
}
}
}
/* check to see that if 30 is actually 1st of next month */
if (yg1 == yg)
{
if (mg1 > mg)
{
dh1--;
if (dh1 < 1)
{
dh1 = 29 + dh1;
mh1--;
}
}
if (mg1 < mg)
{
dh1++;
if (dh1 > 30)
{
dh1 = dh1 - 30;
mh1++;
}
if (dh1 == 30)
{
dh2 = 1;
mh2 = mh1 + 1;
yh2 = yh1;
if (mh2 > 12)
{
yh2++;
mh2 = mh2 - 12;
}
int[] result2 = h2GA(new int[]{yh2, mh2, dh2, yg2, mg2, dg2, out[3]});
yh2 = result2[0];
mh2 = result2[1];
dh2 = result2[2];
yg2 = result2[3];
mg2 = result2[4];
dg2 = result2[5];
out[3] = result2[6];
if (dg2 == dg)
{
mh1++;
dh1 = 1;
}
}
}
/* check to see that if 30 is actually 1st of next month */
if (mg1 == mg && yg1 == yg)
{
/* if the months are equal than adjust the days */
found = 1;
if (dg1 > dg)
{
dh1 = dh1 - (dg1 - dg);
found = 0;
}
if (dg1 < dg)
{
dh1 = dh1 - (dg1 - dg);
found = 0;
}
if (dh1 < 1)
{
dh1 = 29 + dh1;
mh1--;
}
if (dh1 > 30)
{
dh1 = dh1 - 30;
mh1++;
}
if (dh1 == 30)
{
dh2 = 1;
mh2 = mh1 + 1;
yh2 = yh1;
if (mh2 > 12)
{
yh2++;
mh2 = mh2 - 12;
}
int[] result2 = h2GA(new int[]{yh2, mh2, dh2, yg2, mg2, dg2, out[3]});
yh2 = result2[0];
mh2 = result2[1];
dh2 = result2[2];
yg2 = result2[3];
mg2 = result2[4];
dg2 = result2[5];
out[3] = result2[6];
if (dg2 == dg)
{
mh1++;
dh1 = 1;
}
}
}
}
/* check to see that if 30 is actually 1st of next month */
if (mh1 < 1)
{
yh1--;
mh1 = 12 + mh1;
}
if (mh1 > 12)
{
yh1++;
mh1 = mh1 - 12;
}
}
Double doubleHolder = gCalendarToJD(yg, mg, dg) + 2;
J = doubleHolder.longValue();
Long longHolder = J % 7;
out[3] = longHolder.intValue();
out[0] = yh1;
out[1] = mh1;
out[2] = dh1;
return out;
}
|
0fb69497-1640-4587-8113-a0b233e19476
|
public void setPolicyLineofBusiness(java.lang.String policyLineofBusiness) {
this.policyLineofBusiness = policyLineofBusiness;
}
|
5abc6f49-841f-43e7-b1c1-a60f8f30b1f0
|
public java.math.BigDecimal getCustomCurrency18() {
return this.customCurrency18;
}
|
12072a49-a33a-48a0-8628-0c9ea67afdc1
|
public crmondemand.xml.customobject6.query.QueryType getCustomDate26() {
return this.customDate26;
}
|
7649fe6f-128b-4468-a6e9-14657d69ab2e
|
public void setCustomPickList98(crmondemand.xml.contact.query.QueryType customPickList98) {
this.customPickList98 = customPickList98;
}
|
2ba20ccc-f2db-4f77-b93c-acb9bb3df92a
|
public crmondemand.xml.customobject3.query.QueryType getCustomPickList38() {
return this.customPickList38;
}
|
7be7f6d9-ecf7-4e06-810b-dbe7977921ed
|
public crmondemand.xml.customobject3.query.QueryType getCustomInteger21() {
return this.customInteger21;
}
|
bcb7a807-2e5a-4b5a-956e-ff2ef9e15173
|
public java.lang.String getCustomPickList28() {
return this.customPickList28;
}
|
07c01bd6-4229-4083-81b8-7a710a04455e
|
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
|
609efd2d-4a34-4eea-b414-dc56dfe2f406
|
public java.math.BigDecimal getCustomNumber45() {
return this.customNumber45;
}
|
803d2c6e-df9c-4a37-9e9c-a8871f9e44f5
|
public void setCustomNumber34(crmondemand.xml.customobject6.query.QueryType customNumber34) {
this.customNumber34 = customNumber34;
}
|
83a07f0e-6dd0-4403-bc29-cd4d94531d06
|
public crmondemand.xml.contact.query.QueryType getCustomBoolean23() {
return this.customBoolean23;
}
|
e125f00f-7d3d-4ddb-bc26-6817f2bd05a2
|
public void setCustomDate2(java.util.Calendar customDate2) {
this.customDate2 = customDate2;
}
|
f73bb67c-cefa-49d2-9b9a-1b8fbab4033f
|
public void setCustomInteger20(crmondemand.xml.customobject3.query.QueryType customInteger20) {
this.customInteger20 = customInteger20;
}
|
4fb4af0f-55d9-4317-bf23-d22e97c2c854
|
public void setCustomText30(crmondemand.xml.opportunity.query.QueryType customText30) {
this.customText30 = customText30;
}
|
c5c16324-90c4-49ae-b8a3-05f99713aa53
|
public void setServiceRequestSRNumber(java.lang.String serviceRequestSRNumber) {
this.serviceRequestSRNumber = serviceRequestSRNumber;
}
|
40977f09-31a3-457d-b977-3d3cb251d8d8
|
public void setPosition(Point position)
{
this.position = position;
}
|
abacae73-ae95-416a-a9e2-1a6ecf31e39d
|
public void setCustomObject8IntegrationId(crmondemand.xml.customobject3.query.QueryType customObject8IntegrationId) {
this.customObject8IntegrationId = customObject8IntegrationId;
}
|
42e26d08-1fa3-4382-920d-8ba5d13f19f0
|
public void setCustomText87(crmondemand.xml.customobject6.query.QueryType customText87) {
this.customText87 = customText87;
}
|
7eb5ceca-2529-45c0-a2e1-dd3f3d6890af
|
public void setCustomNumber55(crmondemand.xml.customobject6.query.QueryType customNumber55) {
this.customNumber55 = customNumber55;
}
|
88824fb0-f03b-4922-b8fe-40747c9571c2
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
|
fb271963-d520-489a-b57d-b40a460885f7
|
public void setCustomDate13(crmondemand.xml.opportunity.query.QueryType customDate13) {
this.customDate13 = customDate13;
}
|
3deb1240-c66b-4128-8f08-aa9306ac3ea6
|
public void setCustomDate9(crmondemand.xml.customobject6.query.QueryType customDate9) {
this.customDate9 = customDate9;
}
|
9c2d4a9a-1c2d-45a7-8dcb-55e256737f70
|
@Override
public String getValueOrTargetHelp() {
return getValue();
}
|
595ce08f-8c10-40f5-be6c-d7b66e9fbcf6
|
public crmondemand.xml.contact.query.QueryType getCustomNumber1() {
return this.customNumber1;
}
|
34793d2b-39f6-4c0e-aaa4-37603de204ef
|
public void setHero(String hero) {
this.hero = hero;
}
|
438886af-ae14-4d93-bff1-7cb6fe0c1a88
|
public void setUpdatedByUserSignInId(java.lang.String updatedByUserSignInId) {
this.updatedByUserSignInId = updatedByUserSignInId;
}
|
3b608c33-6b82-4fe5-ba58-5a208b959f3e
|
public java.lang.String getCustomPickList21() {
return this.customPickList21;
}
|
0fa2186f-14cb-42f7-8109-4c79d90673c0
|
private static byte typeToByte(Type type) {
if (type == null) {
return 0x13; // ???-type
}
switch (type) {
case NORMAL:
return 0x00;
case FIGHTING:
return 0x01;
case FLYING:
return 0x02;
case POISON:
return 0x03;
case GROUND:
return 0x04;
case ROCK:
return 0x05;
case BUG:
return 0x07;
case GHOST:
return 0x08;
case FIRE:
return 0x14;
case WATER:
return 0x15;
case GRASS:
return 0x16;
case ELECTRIC:
return 0x17;
case PSYCHIC:
return 0x18;
case ICE:
return 0x19;
case DRAGON:
return 0x1A;
case STEEL:
return 0x09;
case DARK:
return 0x1B;
default:
return 0; // normal by default
}
}
|
6be5f3fe-f563-4cf8-86ab-d9a72833b72b
|
public crmondemand.xml.opportunity.query.QueryType getCustomPickList17() {
return this.customPickList17;
}
|
0972c495-e340-4ea7-aa51-9feeee99b10a
|
public void setFinalAccountReference(java.lang.Boolean finalAccountReference) {
this.finalAccountReference = finalAccountReference;
}
|
663eb8b6-c776-49f9-a430-25838c58bcd7
|
public java.math.BigDecimal getCustomNumber41() {
return this.customNumber41;
}
|
23f71adf-1f76-4510-9b5b-6ae03dc80294
|
public crmondemand.xml.contact.query.QueryType getCustomPickList39() {
return this.customPickList39;
}
|
4080a5da-4d85-4d41-940d-1600ea1ea419
|
public void setPartnerName(crmondemand.xml.customobject6.query.QueryType partnerName) {
this.partnerName = partnerName;
}
|
3249961b-3ab3-4d60-a19e-6ccfdca1f4d9
|
public crmondemand.xml.customobject6.query.QueryType getUpdatedByEMailAddr() {
return this.updatedByEMailAddr;
}
|
8fe758ce-d191-44ae-893b-9186d4eb7a37
|
public java.lang.String getCustomPickList3() {
return this.customPickList3;
}
|
2389683c-e0c9-489c-bc60-51f9084c1c0e
|
public java.lang.String getIndexedPick2() {
return this.indexedPick2;
}
|
dc746785-fa1b-4799-8a74-4a1b4567d6b1
|
public void setUpdatedByUserSignInId(crmondemand.xml.customobject6.query.QueryType updatedByUserSignInId) {
this.updatedByUserSignInId = updatedByUserSignInId;
}
|
b209af93-9045-45cd-b851-a0e6a9cd1cdc
|
public void setCustomText20(java.lang.String customText20) {
this.customText20 = customText20;
}
|
7c9dcc46-6ad5-415c-af46-d25dd415513f
|
public crmondemand.xml.contact.query.QueryType getCustomPickList48() {
return this.customPickList48;
}
|
3f796a54-3c7d-4c88-95f0-d069b6dd8d92
|
public void setCustomInteger26(crmondemand.xml.contact.query.QueryType customInteger26) {
this.customInteger26 = customInteger26;
}
|
8f8525c3-02f3-48d7-9e8c-0b15a33fb685
|
public void setBilder(Bilder value) {
this.bilder = value;
}
|
2f90287b-38f7-4fea-bacd-5a071ac9a103
|
* @param style
* @param maxdepth
* @param stream
*/
public static void explainProposition(Proposition prop, Keyword style, int maxdepth, OutputStream stream) {
try {
{ List justifications = prop.forwardJustifications();
if (justifications != null) {
{ Object old$ExplanationStyle$000 = Logic.$EXPLANATION_STYLE$.get();
Object old$MostRecentExplanationMapping$000 = Logic.$MOST_RECENT_EXPLANATION_MAPPING$.get();
try {
Native.setSpecial(Logic.$EXPLANATION_STYLE$, ((style != null) ? style : Logic.KWD_BRIEF));
Native.setSpecial(Logic.$MOST_RECENT_EXPLANATION_MAPPING$, null);
{ Justification justification = null;
Cons iter000 = justifications.theConsList;
for (;!(iter000 == Stella.NIL); iter000 = iter000.rest) {
justification = ((Justification)(iter000.value));
Native.setSpecial(Logic.$MOST_RECENT_EXPLANATION_MAPPING$, null);
Justification.printExplanation(justification, stream, ((KeyValueList)(Logic.$MOST_RECENT_EXPLANATION_MAPPING$.get())), maxdepth, ((Keyword)(Logic.$EXPLANATION_AUDIENCE$.get())));
}
}
} finally {
Logic.$MOST_RECENT_EXPLANATION_MAPPING$.set(old$MostRecentExplanationMapping$000);
Logic.$EXPLANATION_STYLE$.set(old$ExplanationStyle$000);
}
}
}
}
} catch (ExplainException ee) {
System.out.print(Stella.exceptionMessage(ee));
}
}
|
4b0494d7-6b09-4827-94dc-fed88f6fe49f
|
public void setContactIntegrationId(java.lang.String contactIntegrationId) {
this.contactIntegrationId = contactIntegrationId;
}
|
e7783a5e-c4fd-4321-80c7-9292d213f9e8
|
public void setCustomDate6(crmondemand.xml.opportunity.query.QueryType customDate6) {
this.customDate6 = customDate6;
}
|
62844e80-e9d1-4f51-840e-422cf2f9bd92
|
public crmondemand.xml.contact.query.QueryType getVehicleId() {
return this.vehicleId;
}
|
c8030d66-02ee-4538-95b1-49769cb3ec3a
|
public void setCustomDate30(crmondemand.xml.opportunity.query.QueryType customDate30) {
this.customDate30 = customDate30;
}
|
032b5170-ea78-4c6a-9c72-13720ec91b51
|
@Override
public void windowActivated(WindowEvent arg0) {
// TODO Auto-generated method stub
}
|
6d16fc5c-d8b5-4f13-b353-7d73ea8c3075
|
public crmondemand.xml.customobject3.query.QueryType getCustomDate57() {
return this.customDate57;
}
|
7e3a66a8-390e-4f4c-8f5e-dd7e17c6edad
|
public Block(int i, boolean j, boolean k, Color l) {
blockid = i;
blocksolid = j;
breakable = k;
blockcolor = l;
}
|
60829fbf-8625-41a3-b9fa-8cb08692505a
|
public void setCustomText85(crmondemand.xml.contact.query.QueryType customText85) {
this.customText85 = customText85;
}
|
3db8460e-dc1a-45e8-93d1-30af9c7ad95a
|
public void setCustomPickList5(java.lang.String customPickList5) {
this.customPickList5 = customPickList5;
}
|
f7878fc5-2dee-4cf4-b611-e5576e5b13bd
|
public java.lang.String getCustomPickList98() {
return this.customPickList98;
}
|
7fe2671a-efff-4640-afea-d3098ec942d8
|
public void setCustomPickList69(java.lang.String customPickList69) {
this.customPickList69 = customPickList69;
}
|
95ea826a-f2e8-4a57-a7cd-c2398d78aa7b
|
public void setCustomPickList81(java.lang.String customPickList81) {
this.customPickList81 = customPickList81;
}
|
32f63463-cd76-4ffb-990e-471efa60f620
|
public void setPolicyLineofBusiness(java.lang.String policyLineofBusiness) {
this.policyLineofBusiness = policyLineofBusiness;
}
|
6255ed2c-bff6-4da8-a70c-8133bce1ec95
|
public void setCustomText85(java.lang.String customText85) {
this.customText85 = customText85;
}
|
66cdcc55-daee-4316-b948-8eb7ac324ea2
|
public void setCustomNumber30(java.math.BigDecimal customNumber30) {
this.customNumber30 = customNumber30;
}
|
0275b122-9030-4bae-81c7-7d8bf7a0b268
|
public java.lang.String getCustomPickList63() {
return this.customPickList63;
}
|
b19b6c14-fb1a-4ead-ad28-4b1c66f5bf97
|
public java.lang.String getProgramPartnerType() {
return this.programPartnerType;
}
|
c5de4c6a-7025-4cdc-8557-d6522cc82367
|
public void setCustomInteger31(crmondemand.xml.customobject6.query.QueryType customInteger31) {
this.customInteger31 = customInteger31;
}
|
44997f73-5e47-4533-b553-60e684344208
|
public void setY(float y) {
this.y = y;
}
|
d3bb09f0-acdd-4bc9-9cc8-b6fe59aff9a8
|
public void setCustomText86(java.lang.String customText86) {
this.customText86 = customText86;
}
|
f2f06d2e-e082-40ec-a405-74aa4c26fe33
|
public java.util.Calendar getCustomDate19() {
return this.customDate19;
}
|
3424f935-f87b-4dee-8a80-90541360f80f
|
public java.lang.String getCertficationExternalSystemId() {
return this.certficationExternalSystemId;
}
|
b9dfde6a-7daf-4b6b-9618-1e84cb8a9232
|
public java.lang.String getPortfolioExternalSystemId() {
return this.portfolioExternalSystemId;
}
|
ff45f01b-28d0-469b-8ce1-26d0edbd0037
|
public java.lang.String getContactId() {
return this.contactId;
}
|
458b27fa-c1d5-4096-81eb-7325115934cd
|
public void setPolicyExpirationDate(java.util.Calendar policyExpirationDate) {
this.policyExpirationDate = policyExpirationDate;
}
|
d09dfc8f-fc44-40a1-a156-40423542b147
|
@Override
public void actionPerformed(ActionEvent e) {
if(p.getText().equalsIgnoreCase(ps))
{
p.setForeground(cc);
p.setBorder(null);
p.setEditable(false);
}
else
{
p.setForeground(wc);
}
}
|
f779302f-8646-4d44-9fa6-c05da3d6500b
|
public void setCustomText3(crmondemand.xml.contact.query.QueryType customText3) {
this.customText3 = customText3;
}
|
024475a0-434a-4d1c-8659-5f065358ac99
|
public static void PyErr_Display(Pointer<PyObject > PyObjectPtr1, Pointer<PyObject > PyObjectPtr2, Pointer<PyObject > PyObjectPtr3) {
PyErr_Display(Pointer.getPeer(PyObjectPtr1), Pointer.getPeer(PyObjectPtr2), Pointer.getPeer(PyObjectPtr3));
}
|
6de8e569-a95c-4b77-a0f5-8d1785f4a666
|
public void setSysId(int sysId) {
this.sysId = sysId;
}
|
625a3534-becd-4ee5-92b9-63ab51e17def
|
public java.lang.String getCustomText4() {
return this.customText4;
}
|
7bbf04bc-69fa-4a30-8f12-b894468876a8
|
public void setFinancialAccountOpenDate(java.util.Calendar financialAccountOpenDate) {
this.financialAccountOpenDate = financialAccountOpenDate;
}
|
08fcc032-dd35-432b-8870-4b4306475222
|
public void setSampleLotLotId(crmondemand.xml.opportunity.query.QueryType sampleLotLotId) {
this.sampleLotLotId = sampleLotLotId;
}
|
ff9e7c06-f441-4092-a2d2-d394dd27d2a7
|
public void setExamExternalSystemId(crmondemand.xml.customobject6.query.QueryType examExternalSystemId) {
this.examExternalSystemId = examExternalSystemId;
}
|
aec8b86d-39b4-41f2-b47f-2d25dc23b65b
|
public java.lang.Integer getCustomInteger32() {
return this.customInteger32;
}
|
cc78f02c-1a9d-4685-8182-3ec28fcba6de
|
public void removePaintPageListener(PaintPageListener listener) {
// remove a listener if it is already registered
synchronized (paintPageListeners) {
if (paintPageListeners.contains(listener)) {
paintPageListeners.removeElement(listener);
}
}
}
|
c02df0dd-db3c-4b94-86f7-ab59355ac63b
|
public void setCustomObject5Name(crmondemand.xml.opportunity.query.QueryType customObject5Name) {
this.customObject5Name = customObject5Name;
}
|
03cf255d-649d-4649-ad5e-82fcce2f6958
|
private void writeName(Name name) throws IOException {
writeName(name.getName());
}
|
be2413fd-00a3-4b99-85a3-3dac1704a453
|
public void setCustomPickList59(crmondemand.xml.contact.query.QueryType customPickList59) {
this.customPickList59 = customPickList59;
}
|
3a32b23e-dd6d-4c40-ad4e-dfb3c8efef3c
|
public crmondemand.xml.opportunity.query.QueryType getPlanItemRelationType() {
return this.planItemRelationType;
}
|
9363a87d-bd79-4b44-b289-8881f4221e62
|
public void setCustomNumber49(java.math.BigDecimal customNumber49) {
this.customNumber49 = customNumber49;
}
|
44081acc-3151-4706-8db4-08dff0da0a66
|
@Override
public boolean updateLaw(Area myArea)
{
if(!theLawIsEnabled())
return false;
final Law laws=getLaws(myArea,false);
if(laws!=null)
{
laws.resetLaw();
if(getLawParms().equalsIgnoreCase("custom")
&&(myArea!=null))
{
CMLib.database().DBReCreatePlayerData(myArea.Name(),"ARREST",myArea.Name()+"/ARREST",laws.rawLawString());
return true;
}
}
return false;
}
|
2bfc3f93-5ee3-41fc-8bb6-78be36be34bc
|
public void setCustomText1(java.lang.String customText1) {
this.customText1 = customText1;
}
|
57d82f80-a9b7-4ece-ae62-49d3c37c247b
|
public void setCustomBoolean23(crmondemand.xml.customobject3.query.QueryType customBoolean23) {
this.customBoolean23 = customBoolean23;
}
|
1100c560-cd27-4199-929a-ff4c6fd3566c
|
public void setCustomNumber25(crmondemand.xml.opportunity.query.QueryType customNumber25) {
this.customNumber25 = customNumber25;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.