id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
492b5f86-3854-444c-a5c5-27f3c0cb2e9c
|
public void pegaNomeInstrutor() {
Professor funcionario = new Professor();
try {
ProfessorDAO dao = new ProfessorDAO(); // estou instanciando a conexão
apagar = nome.length();//Devolve o número de caracteres do objeto Stringbuffer apagar
nome.delete(0, apagar);
nome.append(CodigoInstrutor);
funcionario = dao.carregarProfessorPeloCodigo(nome);
if (funcionario.getNome().equals("nulo")) {
txtResponsavel.setText("");
} else {
txtResponsavel.setText(funcionario.getNome());
txtValorPago.requestFocus();
}
funcionario = null;//Liberar objetos obsoletos logo após o uso atribuindo null.
dao.desconectar();
} catch (Exception e) {
e.printStackTrace();
}
}
|
9e73dc58-02c4-4c10-900c-fc52a417c695
|
public void setCustomDate48(java.util.Calendar customDate48) {
this.customDate48 = customDate48;
}
|
d6d453f6-80f9-4528-a944-5a65b781d799
|
opcode n2a03_61 = new opcode() { public void handler()
{
m6502_ICount[0] -= 6; int tmp=RD_IDX(); ADC_NES(tmp);
//if(m6502log!=null) fprintf(m6502log,"M6502#%d 61 :PC:%d,PPC:%d,SP:%d,ZP:%d,EA:%d,A:%d,X:%d,Y:%d,P:%d,p_irq:%d,a_c:%d,nmi:%d,irq:%d,so:%d\n", cpu_getactivecpu(),m6502.pc.D,m6502.ppc.D,m6502.sp.D,m6502.zp.D,m6502.ea.D,m6502.a,m6502.x,m6502.y,m6502.p,m6502.pending_irq,m6502.after_cli,m6502.nmi_state,m6502.irq_state,m6502.so_state);
}}
|
e4a69436-339f-4e7f-a3c8-a34483fcdecd
|
public crmondemand.xml.opportunity.query.QueryType getCustomCurrency11() {
return this.customCurrency11;
}
|
7f02c6ad-037f-4f57-9700-f9b2b1602cab
|
public HashMap<Integer, ProcessControlBlock> getPCBList() {
return pcbList;
}
|
13f56a82-f426-471b-8f60-07f7d055ec43
|
public java.lang.String getCustomObject15ExternalSystemId() {
return this.customObject15ExternalSystemId;
}
|
1e408e98-e7d8-4249-bda8-76a0065cbec7
|
public crmondemand.xml.opportunity.query.QueryType getParentoptyAccountName() {
return this.parentoptyAccountName;
}
|
aa3018b6-a9e4-431e-9c33-b4d61956ceba
|
public void setCustomNumber1(java.math.BigDecimal customNumber1) {
this.customNumber1 = customNumber1;
}
|
2fdee543-f42b-4506-a1fa-239ea3e35e06
|
public void setCustomText47(java.lang.String customText47) {
this.customText47 = customText47;
}
|
d92a8bc7-1f60-43d4-870c-3a26ebdf8eb8
|
public java.lang.Integer getCustomInteger5() {
return this.customInteger5;
}
|
2c75745d-40b6-4a1d-b6a1-a55f4e5218b2
|
public static boolean hitBlockedTile(Rectangle player) {
for (int x = 0; x < Tile.SIZE; x++) {
for(int y = 0; y < Tile.SIZE; y++) {
if (level[x][y].id == 2) {
if (((BlockedTile) level[x][y]).blocked(player)) {
return true;
}
}
}
}
return false;
}
|
b3547462-b30e-439e-a89f-f417de6634b6
|
public java.util.Calendar getCustomDate42() {
return this.customDate42;
}
|
0442e93a-c4f8-4eae-965c-a6d1c5482173
|
public java.math.BigDecimal getCustomNumber21() {
return this.customNumber21;
}
|
fb0d6204-3f21-4532-a749-d8938c9d340b
|
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
for (int i = 0; i < getUninterpretedOptionCount(); i++) {
if (!getUninterpretedOption(i).isInitialized()) {
memoizedIsInitialized = 0;
return false;
}
}
if (!extensionsAreInitialized()) {
memoizedIsInitialized = 0;
return false;
}
memoizedIsInitialized = 1;
return true;
}
|
3147e4e4-4d50-43fc-b766-c8f13794fa98
|
public java.lang.Boolean getCustomBoolean11() {
return this.customBoolean11;
}
|
2b1e94fe-760f-47ee-81da-ddc9574c2596
|
public void setAccountName(java.lang.String accountName) {
this.accountName = accountName;
}
|
b9619141-c1af-44f2-a36b-aa80db35f7d4
|
public java.lang.Integer getCustomInteger3() {
return this.customInteger3;
}
|
6e23e988-a8b3-45b1-862d-b3877c99f24d
|
*/
public static Pointer<PyObject > PyModule_GetDict(Pointer<PyObject > PyObjectPtr1) {
return Pointer.pointerToAddress(PyModule_GetDict(Pointer.getPeer(PyObjectPtr1)), PyObject.class);
}
|
1585bd90-ca6d-40e4-898a-c1af390fedc4
|
public crmondemand.xml.customobject3.query.QueryType getCustomText70() {
return this.customText70;
}
|
0957fcc5-dbd8-4f2d-9f32-c892062809a5
|
public java.math.BigDecimal getCustomCurrency23() {
return this.customCurrency23;
}
|
85548b3c-521f-42e1-811c-ee468b8232f9
|
public crmondemand.xml.customobject6.query.QueryType getCustomCurrency15() {
return this.customCurrency15;
}
|
a4e29167-ef44-496a-8036-4375e517a93a
|
private boolean openConnection(String address, int port) {
try {
socket = new DatagramSocket(port);
ip = InetAddress.getByName(address);
} catch (UnknownHostException e) {
e.printStackTrace();
return false;
} catch (SocketException e) {
e.printStackTrace();
return false;
}
return true;
}
|
82364be2-e667-4030-a2ee-ea124ff08c6a
|
public void setCustomCurrency3(crmondemand.xml.customobject6.query.QueryType customCurrency3) {
this.customCurrency3 = customCurrency3;
}
|
cfae16fc-94ea-47e8-bd8e-3746ecb66e4e
|
public void setCustomPickList78(java.lang.String customPickList78) {
this.customPickList78 = customPickList78;
}
|
d72edbbf-50f9-4452-9325-931b2f1d0942
|
public java.lang.String getCustomObject11IntegrationId() {
return this.customObject11IntegrationId;
}
|
7e73f526-44c3-4329-983f-bbcbc987a2a6
|
public java.lang.String getCustomText68() {
return this.customText68;
}
|
0066b08a-4256-440d-88cb-19c3bb5ccd2e
|
public java.lang.String getContactLastName() {
return this.contactLastName;
}
|
b9d353f8-a9db-44ec-80fd-6d34340a171a
|
public java.lang.String getCustomObject02ExternalSystemId() {
return this.customObject02ExternalSystemId;
}
|
3a11e2ef-6186-480c-9c72-4d6824b8ab6e
|
public crmondemand.xml.contact.query.QueryType getCustomBoolean3() {
return this.customBoolean3;
}
|
3d1d147b-93d3-4cf4-8fdc-ee018cc7bc52
|
public java.util.Calendar getSolutionExpirationDate() {
return this.solutionExpirationDate;
}
|
da566b52-bc30-48b9-8d2c-4510bf0fbfef
|
public java.lang.String getCustomPickList98() {
return this.customPickList98;
}
|
cfed21ba-368b-4847-b3b7-7c40ae8aecb5
|
public java.lang.String getCustomPickList62() {
return this.customPickList62;
}
|
bfb68d32-43eb-440a-be10-7f463077d9f5
|
public java.lang.String getCustomPickList48() {
return this.customPickList48;
}
|
e1080bc7-c580-4330-832e-1f30947ff700
|
public void setRenewable(java.lang.Boolean renewable) {
this.renewable = renewable;
}
|
1a91dee9-b9e2-4fba-9390-24c45fa5efdc
|
public static Cons deconstructForallTree(Cons foralltree, Object [] MV_returnarray) {
{ Cons antecedent = ((Cons)(foralltree.rest.rest.value));
Stella_Object ifclause = antecedent.rest.value;
if (ifclause == Logic.SYM_STELLA_TRUE) {
ifclause = Stella.getQuotedTree("((AND) \"/LOGIC\")", "/LOGIC");
}
{ Cons _return_temp = ((Cons)(foralltree.rest.value));
MV_returnarray[0] = ifclause;
MV_returnarray[1] = ((Cons)(antecedent.rest.rest.value));
return (_return_temp);
}
}
}
|
9f8b7ebb-b3d8-485d-8ac2-e8c0634a61d0
|
public void setCustomObject1Id(crmondemand.xml.opportunity.query.QueryType customObject1Id) {
this.customObject1Id = customObject1Id;
}
|
e2916e8b-5175-4c22-b33b-1c07d1723d86
|
public void setjLabel1(JLabel jLabel1) {
this.jLabel1 = jLabel1;
}
|
49cfa5ce-e8cd-408f-b1db-7a289d9b8887
|
public java.math.BigDecimal getCustomNumber31() {
return this.customNumber31;
}
|
9426517d-d426-4447-a085-27397efe48e4
|
public java.lang.String getCustomPickList56() {
return this.customPickList56;
}
|
7fc6e115-4f9c-4610-b36d-6a8e0ecb2b83
|
public java.lang.String getSearchspec() {
return this.searchspec;
}
|
b26b9065-c564-49a6-ba1c-fb4f28be1819
|
public java.lang.Integer getCustomInteger16() {
return this.customInteger16;
}
|
228da3d4-ea9f-4725-b374-95c69882cc14
|
public java.lang.String getCustomText62() {
return this.customText62;
}
|
763adbd5-101a-46cd-9fd4-363745e5ee51
|
public java.math.BigDecimal getCustomNumber49() {
return this.customNumber49;
}
|
5f90107c-fa3a-45e0-9242-8b06f72fc5c4
|
public void setOwnerPartnerId(java.lang.String ownerPartnerId) {
this.ownerPartnerId = ownerPartnerId;
}
|
fd1c48e7-72f0-47cc-91e3-647ef5f9af29
|
public void setAccreditationName(java.lang.String accreditationName) {
this.accreditationName = accreditationName;
}
|
c31886db-8354-4983-8739-4612a2140923
|
public void setCustomPhone1(java.lang.String customPhone1) {
this.customPhone1 = customPhone1;
}
|
19bca0de-2144-43c5-a72e-36fc3b18ad28
|
public void setCustomObject7ExternalSystemId(java.lang.String customObject7ExternalSystemId) {
this.customObject7ExternalSystemId = customObject7ExternalSystemId;
}
|
daf45476-aa9c-45b6-9724-7f0e23f1a557
|
public void setCustomPickList55(crmondemand.xml.contact.query.QueryType customPickList55) {
this.customPickList55 = customPickList55;
}
|
0536cee0-97b7-4bf9-a1d7-3b0987e3beea
|
public void setCustomNumber54(java.math.BigDecimal customNumber54) {
this.customNumber54 = customNumber54;
}
|
54ec3a85-440a-4455-b6e5-c9673cd4cf8c
|
public crmondemand.xml.contact.query.QueryType getCustomNumber24() {
return this.customNumber24;
}
|
9558972b-e136-446c-8879-3a8f7bb5ea26
|
public void setCustomBoolean22(crmondemand.xml.customobject3.query.QueryType customBoolean22) {
this.customBoolean22 = customBoolean22;
}
|
138cca7b-8ff8-42ab-ae2e-152354b8e260
|
public void setCustomPickList38(java.lang.String customPickList38) {
this.customPickList38 = customPickList38;
}
|
b4bdb4a9-40ee-48a5-b79f-832273853382
|
public GameObject() {
NumberBinding divideBinding = Bindings.divide(width, originalWidth);
scaleWidth.bind(divideBinding);
divideBinding = Bindings.divide(height, originalHeight);
scaleHeight.bind(divideBinding);
}
|
ae4270f2-0073-4d21-8b0c-caab623750ef
|
public java.lang.String getCustomPickList13() {
return this.customPickList13;
}
|
26e54c40-08c8-4f4a-b6c3-487bee2d741e
|
public void setCustomDate0(java.util.Calendar customDate0) {
this.customDate0 = customDate0;
}
|
8b96765d-69f3-48de-967e-62737a5b203d
|
public void setCustomCurrency0(java.math.BigDecimal customCurrency0) {
this.customCurrency0 = customCurrency0;
}
|
16770c1c-4a0e-4c87-92e1-404f30b425c6
|
public void set(boolean Boolean) {
resetValues();
type = BOOLEAN;
_BOOLEAN = Boolean;
}
|
4a169540-3910-43b4-9dfe-73183519a74b
|
public crmondemand.xml.customobject6.query.QueryType getCustomDate49() {
return this.customDate49;
}
|
1cdf0163-7128-4b1e-ba97-7d0117d75852
|
public void setEaseTime(double easeTime) {
assert(easeTime >= 0.0);
this.easeTime = easeTime;
}
|
e65f49b3-5d64-4df7-ae61-0b93f69b7bf5
|
public java.math.BigDecimal getCustomCurrency16() {
return this.customCurrency16;
}
|
5ba1ec87-027c-4be0-88ec-2f2ed44045e0
|
public java.lang.String getAlternateAddressId() {
return this.alternateAddressId;
}
|
0bb26339-5c5a-48d6-b30d-22b632e41b64
|
public void setCustomText34(crmondemand.xml.contact.query.QueryType customText34) {
this.customText34 = customText34;
}
|
d001adeb-4a60-479d-9f41-ba7c336cf070
|
public StatementContext statement() {
return getRuleContext(StatementContext.class,0);
}
|
13b2d8d6-5ba3-43ec-8458-3d3df1f46fb6
|
public java.lang.String getCustomPickList30() {
return this.customPickList30;
}
|
85677920-cf48-4a99-90d5-b815bf3b3315
|
public void setCustomText30(java.lang.String customText30) {
this.customText30 = customText30;
}
|
fe041670-3836-4a62-947d-844865e42d37
|
public java.lang.String getCustomPickList52() {
return this.customPickList52;
}
|
5eedf10c-4bb5-4cdc-8bea-6b2680dc9f82
|
*/
public fb_status getSuccess() {
return this.success;
}
|
0330bb94-09a3-442e-965d-3b4da5201d6d
|
public crmondemand.xml.customobject6.query.QueryType getCustomInteger27() {
return this.customInteger27;
}
|
64e5275a-2d1a-40fa-a6b0-0c228a949186
|
public java.lang.String getCustomText54() {
return this.customText54;
}
|
b436c210-9b3f-42a8-80c7-dce82fa862fd
|
public crmondemand.xml.contact.query.QueryType getCustomText6() {
return this.customText6;
}
|
60396e28-148c-4d07-bd9c-270245205eb8
|
public void setCustomPickList89(java.lang.String customPickList89) {
this.customPickList89 = customPickList89;
}
|
492f1c12-8468-4e61-99f6-cb23de7d19ae
|
@Override
public int chips_clock(MachineSound msound) {
return 0;
}
|
5d314d79-0b6b-4e1d-bd95-935bb2de1b43
|
public java.math.BigDecimal getFinancialAccountBalance() {
return this.financialAccountBalance;
}
|
0e05d303-3de2-4939-a205-9e6ec86f4571
|
public void setCustomPickList17(crmondemand.xml.opportunity.query.QueryType customPickList17) {
this.customPickList17 = customPickList17;
}
|
c3849b14-8378-48b7-adb0-e0bab7b5fe41
|
public java.lang.String getExamExternalSystemId() {
return this.examExternalSystemId;
}
|
6b72becc-8b94-41bb-b56d-dfd0c7e2affe
|
private GameManager()
{
}
|
3e04b30f-c496-48c1-98b7-dbcf402dabe7
|
public void setCustomDate30(java.util.Calendar customDate30) {
this.customDate30 = customDate30;
}
|
01511978-d953-4eb9-a100-831c78921beb
|
public final int getCurrentMaxMp(final int job) {
if (GameConstants.isDemonSlayer(job)) {
return GameConstants.getMPByJob(job);
} else if (GameConstants.isZero(job)) {
localmaxmp = 100;
}
return localmaxmp;
}
|
e455fd16-e0be-4268-81c7-cabada32142a
|
public void setPartnerId(crmondemand.xml.customobject3.query.QueryType partnerId) {
this.partnerId = partnerId;
}
|
1e4fab46-e452-4abd-a5b2-dee7196e6630
|
public crmondemand.xml.contact.query.QueryType getCampaignName() {
return this.campaignName;
}
|
cccd5055-2875-4263-9942-aeb5db7cf83d
|
public java.lang.Boolean getIsFlaggedWrongNumberOfEmployees() {
return IsFlaggedWrongNumberOfEmployees;
}
|
05522145-ff2d-4176-874e-1c25cbb70138
|
public static Cons transformProceduralExpression(Cons statement, Cons vrexpression, StandardObject type, Object [] MV_returnarray) {
if (StandardObject.typeSpecToBaseType(type) == Stella.SGT_STELLA_BOOLEAN) {
return (Cons.transformBooleanProceduralExpression(statement, vrexpression, MV_returnarray));
}
else {
return (Cons.transformVrletExpression(statement, vrexpression, MV_returnarray));
}
}
|
0a24bd41-eb4f-401c-b106-53e1487d00fa
|
public crmondemand.xml.customobject6.query.QueryType getPortfolioExternalSystemId() {
return this.portfolioExternalSystemId;
}
|
cf31e7ab-1998-4d48-844a-f1833dc6142c
|
public void setCustomObject8IntegrationId(crmondemand.xml.contact.query.QueryType customObject8IntegrationId) {
this.customObject8IntegrationId = customObject8IntegrationId;
}
|
67a283db-3725-4cb4-b736-a21241124031
|
public java.lang.String getCustomPickList40() {
return this.customPickList40;
}
|
1b2c9210-a8d5-4c1f-8558-3412fb1d3f2b
|
public void xyzToFront()
{
int insertAt = 0;
ArrayList<String> xyz = new ArrayList<String>();
// TODO: Move any word that starts with x, y, or z to the front of the ArrayList, but otherwise preserves the order
for (int i = list.size()-1; i > 0; i--)
{
String current = list.get(i);
if ("xyz".contains(current.substring(0, 1)))
{
xyz.add(current);
}
for (String each : xyz)
{
list.remove(list.indexOf(each));
list.add(0, each);
}
}
}
|
a3fa2d96-f19f-4856-a7e0-0b7437ddfd3e
|
public java.lang.String getCustomPickList24() {
return this.customPickList24;
}
|
729f6b6b-05c1-41ba-bb22-aa97cd03f297
|
public void setCustomText40(java.lang.String customText40) {
this.customText40 = customText40;
}
|
0cb69c01-df57-4b0b-a6f0-5e634f4feaee
|
public crmondemand.xml.customobject3.query.QueryType getSPRequestExternalSystemId() {
return this.sPRequestExternalSystemId;
}
|
3fbaf36a-592b-40ff-9705-8a2d3e300568
|
public java.lang.String getOrderExternalSystemId() {
return this.orderExternalSystemId;
}
|
c28e2d81-0f3f-4cd3-b741-99ea4d8df080
|
public void setAccreditationNum(java.lang.String accreditationNum) {
this.accreditationNum = accreditationNum;
}
|
75455e73-0ec6-44fd-9872-cbe54ee2d731
|
public java.lang.Integer getModId() {
return this.modId;
}
|
73c4c0d7-3d86-4576-9af9-cf28af4ceda2
|
public void setCustomDate38(java.util.Calendar customDate38) {
this.customDate38 = customDate38;
}
|
9d0e4d71-d1b2-4f20-b773-f7c2a75734c7
|
protected void genPassword(MOB mob, MOB M, int showNumber, int showFlag)
throws IOException
{
if((showFlag>0)&&(showFlag!=showNumber))
return;
mob.tell(L("@x1. Password: ********.",""+showNumber));
if((showFlag!=showNumber)&&(showFlag>-999))
return;
final String str=mob.session().prompt(L("Enter a new one to reset\n\r:"),"");
if((str.length()>0)&&(M.playerStats()!=null))
{
M.playerStats().setPassword(str);
CMLib.database().DBUpdatePassword(M.Name(),M.playerStats().getPasswordStr());
}
else
mob.tell(L("(no change)"));
}
|
771d1097-4558-4146-a3b9-35cf494af984
|
private String getClusterInterfaceName(ZclClusterDescriptor zclClusterDescriptor, boolean isServer) {
if (isServer)
return zclClusterDescriptor.getName() + "Server";
else
return zclClusterDescriptor.getName() + "Client";
}
|
a2746fe3-45f5-4c02-9e3c-210a2b89b702
|
public void setCustomDate7(java.util.Calendar customDate7) {
this.customDate7 = customDate7;
}
|
fcc313c2-b911-4184-8d05-d2999d86c65a
|
public ErrorException(String msg) {
super(msg);
}
|
4b68ceb1-1e3c-4365-af41-f520767740bc
|
public void setMedEdId(java.lang.String medEdId)
{
this.medEdId = medEdId;
}
|
1b8c9cd5-a7b3-4574-8c5f-2ae9875decb9
|
public crmondemand.xml.customobject6.query.QueryType getCustomObject13IntegrationId() {
return this.customObject13IntegrationId;
}
|
92b35b70-9010-46b1-ba81-23d7776bd5f2
|
public void hideWindow()
{
setVisible(false);
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.