id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
23c96ca2-1616-452e-8182-b75be624ff83 | public void setCustomNumber27(java.math.BigDecimal customNumber27) {
this.customNumber27 = customNumber27;
} |
5579d415-8ddb-40a0-adb3-4a4bf5ba8f12 | public void setCustomPickList88(crmondemand.xml.customobject6.query.QueryType customPickList88) {
this.customPickList88 = customPickList88;
} |
8d9f13ca-406b-4cbd-9d8b-a3a9361fa1c3 | public crmondemand.xml.customobject6.query.QueryType getCustomDate14() {
return this.customDate14;
} |
b518afe1-ffb2-4e2e-a265-d626fc2b5b99 | public java.math.BigDecimal getCustomCurrency24() {
return this.customCurrency24;
} |
70bc2cd9-1410-4ed3-aa3d-8953e44b439e | public void setCreatedById(java.lang.String createdById) {
this.createdById = createdById;
} |
fc626993-aac9-434f-b754-94ce1d078d97 | public void setBusinessPlanStatus(crmondemand.xml.contact.query.QueryType businessPlanStatus) {
this.businessPlanStatus = businessPlanStatus;
} |
e03bcf41-f2d5-4f6c-94b1-383425a0a438 | public void setProductCategory(java.lang.String productCategory) {
this.productCategory = productCategory;
} |
b5f7bf14-978e-4707-b3b9-bd514e0cdc2a | private String getDocName(int id) {
return docIdList.get(id);
} |
a7ecfead-a61d-4f11-994e-749f3ce7b8d0 | public void setServicingDealer(java.lang.String servicingDealer) {
this.servicingDealer = servicingDealer;
} |
419013d3-0e14-45b0-a847-344b093c64ba | public void setExchangeDate(java.util.Calendar exchangeDate) {
this.exchangeDate = exchangeDate;
} |
6c7056ee-6ec5-488e-90d1-fa0d65c5d35c | public String getSpielerstatus(); |
44159dab-fdd8-481e-8e57-a9e1166bc149 | public void setCustomNumber55(java.math.BigDecimal customNumber55) {
this.customNumber55 = customNumber55;
} |
4b6afa2d-67ea-43f2-bebc-de6484fc57c9 | public org.bwapi.proxy.messages.DrawCommands.DrawCommand.Builder getDrawCommandsBuilder(
int index) {
return getDrawCommandsFieldBuilder().getBuilder(index);
} |
e2e91c2a-aa25-4ed8-b626-a6eebc7abef6 | public void setCustomObject4IntegrationId(java.lang.String customObject4IntegrationId) {
this.customObject4IntegrationId = customObject4IntegrationId;
} |
627670d9-5c3d-4713-990c-11093603ef3b | public crmondemand.xml.contact.query.QueryType getOpportunityExternalSystemId() {
return this.opportunityExternalSystemId;
} |
6c4c600d-f86c-44ea-a7fe-603a1fdc50a8 | public void setCustomText80(java.lang.String customText80) {
this.customText80 = customText80;
} |
3f75c506-55f3-4aec-a1a9-29d52153753c | public void setCustomText14(java.lang.String customText14) {
this.customText14 = customText14;
} |
5dc39627-f506-474c-ab3e-e2255e6a1ae5 | private void Process_BeginsDirectlyWithSymbol(List<Production> productions, Boolean[][] beginsDirectlyWithSymbol){
// First set all pairs to false.
for (int i = 0; i < mSymbolsEx.size(); ++i){
for (int j = 0; j < mSymbolsEx.size(); ++j){ // for each pair of symbols
beginsDirectlyWithSymbol[i][j] = false;
}
}
// Then set to true only the appropriate pairs.
for (int i = 0; i < mSymbolsEx.size(); ++i){
SymbolEx firstSym = mSymbolsEx.get(i);
if (firstSym.mSym.mIsTerminal) continue; // only nonterminal symbols can be processed
for (int j = 0; j < mSymbolsEx.size(); ++j){
SymbolEx secondSym = mSymbolsEx.get(j);
for (int k = 0; k < productions.size(); ++k){
if (firstSym == mSymbolsEx.get(productions.get(k).mLeftNonTerminalSymbolIndex)){
// now we go through all of the productions
for (int l = 0; l < productions.get(k).mRightSymbolsIndices.size(); ++l){
int productionSymIndex = productions.get(k).mRightSymbolsIndices.get(l);
if (productionSymIndex != Utilities.ProductionEpsilonCode){
if (mSymbolsEx.get(productionSymIndex) == secondSym){
beginsDirectlyWithSymbol[i][j] = true;
break;// we found our 'secondSym' in production right side symbols
}else if (mSymbolsEx.get(productionSymIndex).mIsEmpty){
continue;// so far there are only empty symbols in this production
}else{
break;// because whatever comes next won't be in 'beginsDirectlyWithSymbol' relation.
}
}
else break;
}
}
}
}
}
} |
2b933b7f-6fb9-4c47-a003-4533f581ee3c | public void setCustomCurrency22(java.math.BigDecimal customCurrency22) {
this.customCurrency22 = customCurrency22;
} |
ccb1aa62-7a7e-4501-a7c4-d6ee1a35f0ef | public java.lang.String getCustomPhone7() {
return this.customPhone7;
} |
dbb4778c-00ae-4d2b-9fbb-f10b5d319870 | private void domicilioEmpleadoKeyTyped(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_domicilioEmpleadoKeyTyped
// TODO add your handling code here:
Validaciones.SoloLetras(evt, domicilioEmpleado);
}//GEN-LAST:event_domicilioEmpleadoKeyTyped |
46597dc5-e6ba-4437-a86e-67106c13c128 | public void setCustomPickList20(java.lang.String customPickList20) {
this.customPickList20 = customPickList20;
} |
04ed5fe8-e2c3-41a7-b15d-c1f223912ecd | public java.lang.String getCustomText85() {
return this.customText85;
} |
fc181d9d-74b2-4159-9e34-243c32ae91eb | public void setAssetIntegrationId(java.lang.String assetIntegrationId) {
this.assetIntegrationId = assetIntegrationId;
} |
f1a099b5-2114-4015-bbea-556c1fa133e9 | public java.util.Calendar getPolicyExpirationDate() {
return this.policyExpirationDate;
} |
ec0e1bc4-2fee-49ac-a519-3e7661e265a1 | public Entity(BufferedImage sprite){
this(0,0,sprite);
} |
cbfd157b-b519-47e4-b5d0-8cbaed1c21b9 | public void setCustomNumber36(crmondemand.xml.customobject6.query.QueryType customNumber36) {
this.customNumber36 = customNumber36;
} |
c7287784-3995-4202-8ebd-47e3e3847532 | @Override
public void actionPerformed(ActionEvent e) {
if(tb.getText().equalsIgnoreCase(tbs))
{
tb.setForeground(cc);
tb.setBorder(null);
tb.setEditable(false);
}
else
{
tb.setForeground(wc);
}
} |
b6f8364d-84a8-4305-9cd2-4d3241f59061 | public crmondemand.xml.customobject6.query.QueryType getCustomPickList35() {
return this.customPickList35;
} |
cb762d89-d7d7-434c-98eb-0caf4c0104e5 | public void setCustomText28(java.lang.String customText28) {
this.customText28 = customText28;
} |
a386c7f5-9cc5-4d66-b29b-0a99aafff67e | public void setCustomText57(crmondemand.xml.customobject6.query.QueryType customText57) {
this.customText57 = customText57;
} |
7b66ad93-147c-4e22-b9ae-4c942809f209 | public crmondemand.xml.contact.query.QueryType getModifiedByExt() {
return this.modifiedByExt;
} |
5d508658-eadd-4a97-b6ba-d79af37ea9c7 | public void setCustomPhone2(java.lang.String customPhone2) {
this.customPhone2 = customPhone2;
} |
8046c11c-f5bc-4c94-9339-c50ae3136d04 | public void setCustomText56(crmondemand.xml.customobject6.query.QueryType customText56) {
this.customText56 = customText56;
} |
f1f290ae-dc3d-4c21-9125-59ddbc358ad4 | public crmondemand.xml.contact.query.QueryType getCustomObject6Name() {
return this.customObject6Name;
} |
73f20af5-d41e-43fd-a72f-f5b78cbabb86 | public java.lang.String getCustomText89() {
return this.customText89;
} |
4e8c56d6-b275-4344-aabe-8e7e55d11a07 | * @param y
* @return double
*/
public static double float_min(double x, double y) {
return (((x > y) ? (((y == Stella.NULL_FLOAT) ? x : y)) : (((x == Stella.NULL_FLOAT) ? y : x))));
} |
f37f8dfd-b526-4214-b4fe-a072c4f45c7f | public String getNombre_usuario() {
return nombre_usuario;
} |
757c9365-2805-432d-8a45-6bdae86c7021 | public void setCustomPickList23(java.lang.String customPickList23) {
this.customPickList23 = customPickList23;
} |
44a3fc8f-abf7-4b36-a399-b04e7d8cddf4 | public int getEdgeAction() {
return edgeAction;
} |
06667b37-d31c-490c-8d9e-305223d11868 | public crmondemand.xml.contact.query.QueryType getCustomText88() {
return this.customText88;
} |
8477c7c7-ac06-43a7-97d2-6e12dfe79edd | public crmondemand.xml.contact.query.QueryType getCustomDate31() {
return this.customDate31;
} |
ca7a4b8c-e656-40e4-92a2-7250100994fb | public void setCustomObject11Id(crmondemand.xml.customobject3.query.QueryType customObject11Id) {
this.customObject11Id = customObject11Id;
} |
0c3a396b-08ab-4ab5-8d66-6a575fc632e1 | public float getBloomThreshold() {
return bloomThreshold;
} |
ebab6751-5211-4923-b903-bf8abfe9321d | public void unreachableCode(Statement statement) {
int sourceStart = statement.sourceStart;
int sourceEnd = statement.sourceEnd;
if (statement instanceof LocalDeclaration) {
LocalDeclaration declaration = (LocalDeclaration) statement;
sourceStart = declaration.declarationSourceStart;
sourceEnd = declaration.declarationSourceEnd;
} else if (statement instanceof Expression) {
int statemendEnd = ((Expression) statement).statementEnd;
if (statemendEnd != -1) sourceEnd = statemendEnd;
}
this.handle(
IProblem.CodeCannotBeReached,
NoArgument,
NoArgument,
ProblemSeverities.Ignore,
sourceStart,
sourceEnd);
} |
e568da0d-87e5-43a5-88be-8bfca0182be2 | public void setCustomPickList96(java.lang.String customPickList96) {
this.customPickList96 = customPickList96;
} |
9261d981-879a-4f46-aa62-b467d72c0907 | public void setCustomNumber12(crmondemand.xml.opportunity.query.QueryType customNumber12) {
this.customNumber12 = customNumber12;
} |
03aeccf7-9895-44fa-940b-2f25ab80272f | public void loadPreset(String presetName)
{
BufferedReader in = null;
SimulationWindow sim = Hub.simWindow;
try
{
sim.sim.pause();
File presetFile = new File(saveDirectory + "//" + presetName);
in = new BufferedReader(new FileReader(presetFile));
in.readLine();// Plants
sim.plantOptionsMenu.setX(-200);
/**/sim.add(sim.plantOptionsMenu);
sim.leafSizeSlider.setValue(readValueFromLine(in.readLine()));
sim.stalkLengthSlider.setValue(readValueFromLine(in.readLine()));
sim.mutantOffspringSlider.setValue(readValueFromLine(in.readLine()));
sim.dnaDamageSlider.setValue(readValueFromLine(in.readLine()));
/**/sim.remove(sim.plantOptionsMenu);
in.readLine();// /n
in.readLine();// Light
sim.lightOptionsMenu.setX(-200);
/**/sim.add(sim.lightOptionsMenu);
sim.redLightSlider.setValue(readValueFromLine(in.readLine()));
sim.greenLightSlider.setValue(readValueFromLine(in.readLine()));
sim.blueLightSlider.setValue(readValueFromLine(in.readLine()));
sim.leafOpacitySlider.setValue(readValueFromLine(in.readLine()));
/**/sim.remove(sim.lightOptionsMenu);
sim.sim.unpause();
}
catch (Exception e)
{
if (presetName == "default.txt")
createDefaultPresetFile();
loadPreset("default.txt");
}
finally
{
try
{
in.close();
}
catch (IOException e)
{
e.printStackTrace();
}
sim.sim.unpause();
}
} |
42bbf1a8-f964-4f36-9161-b5bdd6583fdb | public void setVehicleUsedNew(java.lang.String vehicleUsedNew) {
this.vehicleUsedNew = vehicleUsedNew;
} |
9600fb56-5b73-4b45-838f-e983eddcf13a | public void mouseDragged(MouseEvent arg0) {
xPos = arg0.getX() * Game.WIDTH / Game.instance.getWidth();
yPos = arg0.getY() * Game.HEIGHT / Game.instance.getHeight();
checkHover();
} |
f63dcacf-79bd-4aba-a4f6-fc0b9bfe4772 | public void setCustomDate51(java.util.Calendar customDate51) {
this.customDate51 = customDate51;
} |
399ef0da-56c5-4575-92be-a31d0174c1a9 | public void setBusinessAccountOwner(java.lang.String businessAccountOwner) {
this.businessAccountOwner = businessAccountOwner;
} |
96e5506c-04d1-44ab-beb7-91f5bfaf0fd1 | public crmondemand.xml.opportunity.query.QueryType getCustomDate51() {
return this.customDate51;
} |
e9af6dd8-8fa2-4f3c-b049-59a9adca23d7 | public Pointer<PyObject > PyExc_UnicodeDecodeError() {
try {
return (Pointer<PyObject >)BridJ.getNativeLibrary("python27").getSymbolPointer("PyExc_UnicodeDecodeError").as(DefaultParameterizedType.paramType(Pointer.class, PyObject.class)).get();
}catch (Throwable $ex$) {
throw new RuntimeException($ex$);
}
} |
40052cc7-861e-427e-9632-feda9d2cae0f | public crmondemand.xml.opportunity.query.QueryType getCustomPickList44() {
return this.customPickList44;
} |
45ec4728-33c8-48d3-88af-32720ee75695 | public java.lang.Boolean getCustomBoolean22() {
return this.customBoolean22;
} |
f3d0ed8b-3182-4b60-b97b-359183700900 | public abstract List<PictureObject> getPictures(List<PictureObject> pictures); |
c96effac-f96c-4527-9e46-94b792c7cc7f | public crmondemand.xml.customobject6.query.QueryType getCustomCurrency175() {
return this.customCurrency175;
} |
bf2fc2ce-450d-499c-b895-09f1a1451ac4 | private void integrateFlow(Vector beans, Vector connections) {
java.awt.Color bckC = getBackground();
m_bcSupport = new BeanContextSupport();
m_bcSupport.setDesignTime(true);
// register this panel as a property change listener with each
// bean
for (int i = 0; i < beans.size(); i++) {
BeanInstance tempB = (BeanInstance)beans.elementAt(i);
if (tempB.getBean() instanceof Visible) {
((Visible)(tempB.getBean())).getVisual().
addPropertyChangeListener(this);
// A workaround to account for JPanel's with their default
// background colour not being serializable in Apple's JRE
((Visible)(tempB.getBean())).getVisual().
setBackground(bckC);
((JComponent)(tempB.getBean())).setBackground(bckC);
}
if (tempB.getBean() instanceof BeanCommon) {
((BeanCommon)(tempB.getBean())).setLog(m_logPanel);
}
if (tempB.getBean() instanceof BeanContextChild) {
m_bcSupport.add(tempB.getBean());
}
}
BeanInstance.setBeanInstances(beans, m_beanLayout);
BeanConnection.setConnections(connections);
m_beanLayout.revalidate();
m_beanLayout.repaint();
} |
9c4aa515-d995-4e77-9d62-1597ebdfec80 | public java.lang.Boolean getCustomBoolean6() {
return this.customBoolean6;
} |
4f5e84d4-d5a9-40fc-908a-8b120f059e53 | public java.lang.Boolean getCustomBoolean3() {
return this.customBoolean3;
} |
116b8e81-f780-4edc-b178-d796183993bd | public java.lang.Integer getCustomInteger13() {
return this.customInteger13;
} |
a1c6ef54-54bd-4e9f-b052-fafebc1c4623 | public void setCustomText2(crmondemand.xml.contact.query.QueryType customText2) {
this.customText2 = customText2;
} |
0eed448a-77e8-4320-9b4e-89c644659a56 | public void setCustomPickList0(crmondemand.xml.contact.query.QueryType customPickList0) {
this.customPickList0 = customPickList0;
} |
2dc785f3-84f1-4e95-ae36-d6603bc2da6c | public void setCustomObject12ExternalSystemId(java.lang.String customObject12ExternalSystemId) {
this.customObject12ExternalSystemId = customObject12ExternalSystemId;
} |
9cdd0047-f2ce-4af1-94ce-6782da55f5b2 | public crmondemand.xml.opportunity.query.QueryType getCustomPickList36() {
return this.customPickList36;
} |
62e264b4-cbab-4810-8e68-7425f191d5c6 | public void insertar(Material material) throws SQLException{
String query = "BEGIN pack_material.ingreso(?,?,?,?,?,?); END;";
conexion.abrirConexion();
cst = conexion.getConexion().prepareCall(query);
cst.setString(1, material.getIdMaterial());
cst.setString(2, material.getDescripcionM());
cst.setString(3, material.getNombreM() );
cst.setFloat(4, material.getCosto());
cst.setString(5, material.getCantidad() );
cst.setString(6, material.getTipo() );
cst.execute();
cst.close();
} |
0ad0ceb9-4cfd-407e-8000-1f486539e24f | public void setCustomDate53(java.util.Calendar customDate53) {
this.customDate53 = customDate53;
} |
3516d087-4077-47de-b2c9-adf9cfef33ba | @Test
public void testConvertTags(){
String tags = "72, 0, 97, 0, 118, 0, 101, 0, 116, 0, 59, 0, 115, 0, 116, 0, 101, 0, 110, 0, 97, 0, 114, 0, 0, 0";
List<String> res = new ArrayList<String>();
res.addAll(Converter.convertTags(tags));
assertTrue(res.get(0).equals("avet") && res.get(1).equals("stenar"));
} |
fbeef1d4-80a9-4fc0-90e0-adae5b7165e1 | public crmondemand.xml.customobject6.query.QueryType getCustomText38() {
return this.customText38;
} |
5c2bdce3-a806-4244-b6bb-28880f655041 | public void IN() {
pcIncrease();
String DATA="";
switch (Integer.parseInt(DEVID.get(),2)){
case 0:
DATA = KEYBORD.SendData();
break;
case 2:
//DATA = CARD READER
break;
case 3:
DATA = GPR1.get();
break;
}
int numericValue = Integer.parseInt(DATA,2);
if (48<=numericValue && numericValue<=57) {
numericValue = Character.getNumericValue(numericValue);
}
// else if (numericValue!=13)
// HLT();
// if not numeric reject for the program-1
SelectRegister().set(Long.toBinaryString(numericValue));
//pause(MIDDLE);
} |
0d0f7ca3-7e58-4e33-9a55-3ebe75ca16fd | public void setCustomPickList72(java.lang.String customPickList72) {
this.customPickList72 = customPickList72;
} |
ac4d1d9d-4150-4b4a-8c52-c028fd6f086a | public void start(BundleContext context)
throws Exception
{
super.start(context);
plugin = this;
} |
ebffd7e0-55a2-4eb5-9f5a-6d5c49e0edb6 | public void setOpportunityId(java.lang.String opportunityId) {
this.opportunityId = opportunityId;
} |
dd88a13d-2788-4644-8996-e5448bedcb37 | public java.lang.String getCustomPickList92() {
return this.customPickList92;
} |
f81b8db4-0133-40b2-a541-c91fe4e9203b | public java.lang.String getCustomObject14IntegrationId() {
return this.customObject14IntegrationId;
} |
2ced739f-3c0f-412e-8402-d568757036e5 | * @since 2.7
*/
public String getCommentBegin() {
String str = commentBegin;
if (str == null) {
str = consoleKeys.getVariable("comment-begin");
if (str == null) {
str = "#";
}
}
return str;
} |
4b69a9e1-ee49-4a01-93e3-248a3cd81114 | public void setCustomInteger1(crmondemand.xml.opportunity.query.QueryType customInteger1) {
this.customInteger1 = customInteger1;
} |
5ed85c7f-1a40-4231-825c-6a92285ab4ee | public java.lang.String getVehicleIntegrationId() {
return this.vehicleIntegrationId;
} |
c017365d-1ea1-418c-83a4-11149ea22771 | public void setAccountHolderContactFullName(crmondemand.xml.customobject6.query.QueryType accountHolderContactFullName) {
this.accountHolderContactFullName = accountHolderContactFullName;
} |
bf2f3f58-f36d-4f8c-bb52-5d7d4e714820 | public void setBusinessPlanDescription(java.lang.String businessPlanDescription) {
this.businessPlanDescription = businessPlanDescription;
} |
482c8173-8f8b-4fa8-9166-926e941e5317 | @Override
public boolean tick(Tickable ticking, int tickID)
{
if(debugBinInputBuf.length()>0)
{
Log.sysOut("BINPUT: "+(mob==null?"":mob.Name())+": '"+debugBinInputBuf.toString()+"'");
debugBinInputBuf.setLength(0);
}
return !killFlag;
} |
e305fd54-3ff2-4ce9-986b-72a95ddffb56 | public crmondemand.xml.opportunity.query.QueryType getCustomPickList50() {
return this.customPickList50;
} |
6a0fe0d2-3061-4e52-86b7-43abdc935319 | public void setCustomBoolean19(crmondemand.xml.customobject6.query.QueryType customBoolean19) {
this.customBoolean19 = customBoolean19;
} |
df3afefe-b98d-4c33-955f-6983bc35984f | public java.lang.String getCustomPickList34() {
return this.customPickList34;
} |
db3f1f13-9b60-4f8e-8ec5-ad94c25964f1 | */
public Symbol writer() {
{ StorageSlot self = this;
{ StorageSlot cursor = self;
Symbol value = ((Symbol)(KeyValueList.dynamicSlotValue(cursor.dynamicSlots, Stella.SYM_STELLA_SLOT_WRITER, null)));
for (;;) {
if (value != null) {
return (value);
}
cursor = ((StorageSlot)(cursor.slotDirectEquivalent));
if (cursor != null) {
value = ((Symbol)(KeyValueList.dynamicSlotValue(cursor.dynamicSlots, Stella.SYM_STELLA_SLOT_WRITER, null)));
}
else {
return (null);
}
}
}
}
} |
fdf7c5a3-b198-41ed-ad3b-4d13d1bad9e2 | public void setCustomPickList3(crmondemand.xml.customobject6.query.QueryType customPickList3) {
this.customPickList3 = customPickList3;
} |
0e32b513-8cd2-4012-881c-87378af1bd6d | public java.lang.String getVehicleVIN() {
return this.vehicleVIN;
} |
f44b2171-7370-4010-a8f2-036b0dd01671 | public static com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
} |
8f1cc6c3-2dd1-4448-8971-1d4dd3f30b1b | @Override
public void write(byte[] b) throws IOException {
write(b, 0, b.length);
} |
9d8fb0ce-45d7-4209-b625-74adaf4b45ed | public crmondemand.xml.customobject6.query.QueryType getCustomNumber48() {
return this.customNumber48;
} |
607444ed-85ba-4955-9941-63556b821ee3 | public crmondemand.xml.customobject6.query.QueryType getPrimaryBillToCity() {
return this.primaryBillToCity;
} |
9e0ea42d-77b5-4b75-8929-62f6b96ea8d4 | public void setUpdatedByEMailAddr(crmondemand.xml.customobject3.query.QueryType updatedByEMailAddr) {
this.updatedByEMailAddr = updatedByEMailAddr;
} |
61f2c76d-9b19-447b-8e6e-71f6096c04a6 | public java.lang.String getCustomText44() {
return this.customText44;
} |
f21ccdc4-0544-4e75-9e2e-dd0a30bac211 | public crmondemand.xml.opportunity.query.QueryType getCustomPickList46() {
return this.customPickList46;
} |
0b815fe8-b7d0-4f0e-a228-973aa851d981 | public crmondemand.xml.customobject3.query.QueryType getCustomNumber53() {
return this.customNumber53;
} |
bde73173-b733-4bb0-bceb-5accacfd8f69 | public void setCustomPhone11(crmondemand.xml.opportunity.query.QueryType customPhone11) {
this.customPhone11 = customPhone11;
} |
b8fbd9be-fffe-4e63-965f-e2347d7bdd3c | public final BlockStatementContext blockStatement() throws RecognitionException {
BlockStatementContext _localctx = new BlockStatementContext(_ctx, getState());
enterRule(_localctx, 40, RULE_blockStatement);
try {
setState(403);
switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
setState(398); localVariableDeclaration();
setState(399); match(77);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
setState(401); classOrInterfaceDeclaration();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
setState(402); statement();
}
break;
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
} |
a4ed5f33-2b8b-495a-a063-d281ffeefc87 | public void setCustomCurrency165(java.math.BigDecimal customCurrency165) {
this.customCurrency165 = customCurrency165;
} |
8809d227-281b-4004-97a9-564a0932631a | public java.lang.String getCustomObject11Id() {
return this.customObject11Id;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.