query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
5cc697664bf87722672005dd9ba0edad
Creates new form Stud
[ { "docid": "e994a3df54beb3ee491ca2500b729202", "score": "0.0", "text": "public StudentProfile() {\n initComponents();\n }", "title": "" } ]
[ { "docid": "528671d7cee2e2bb1e8118f559773104", "score": "0.65323365", "text": "public static Result create() {\n Form<Student> studentForm = form(Student.class);\n return ok( \t\t\n createForm.render( \t\t\n \t\tstudentForm\n \t\t)\n );\n }", ...
4b8a23300dbece2bd008f78b7411763b
Update room list when the user join a room
[ { "docid": "cf088b17d3d7c677fbeecc7f73931dc4", "score": "0.6768551", "text": "private void onJoinRoom(String roomName) {\n if (roomEntries.containsKey(roomName)) {\n backBTN.setEnabled(chatController.getJoinedRooms().size() > 0);\n JPanel panel = roomEntries.get(roomName);\n...
[ { "docid": "7b00237b29ab55bafb4a4d571d06b8ac", "score": "0.6874401", "text": "private void updateRooms(DataSnapshot roomsSnap) {\n // assuming there will not be many rooms that show up on the user's page setting to\n // an empty HashTable each time there's a change will not disrupt perform...
e85d14c8af1349e87bf124259e496287
Adds the information of the banks to the bank table
[ { "docid": "4d88ec48a58b8c7c374a5b4ac154415d", "score": "0.7222255", "text": "private void addBank(Bank bank) {\n ContentValues cv = new ContentValues();\n cv.put(BankTable.COLUMN_NAME, bank.getName());\n cv.put(BankTable.COLUMN_BIC, bank.getBIC());\n db.insert(BankTable.TABL...
[ { "docid": "7ad7bc877ba3cadc49b3f2a8573117a8", "score": "0.8143159", "text": "private void fillBanksTable() {\n Bank b1 = new Bank(\"Nordea\", \"NDEAFIHH\");\n addBank(b1);\n Bank b2 = new Bank(\"Osuuspankki\", \"OKOYFIHH\");\n addBank(b2);\n Bank b3 = new Bank(\"S-Pan...
7d4f1aaa4d2c594e4e34b0e13ab01b06
Model data for different LODs.
[ { "docid": "5efa262c370df27764e85db0d63bca86", "score": "0.0", "text": "public ModelInstanceDef lods(int j) { return lods(new ModelInstanceDef(), j); }", "title": "" } ]
[ { "docid": "269b00e53671d5cc76bd886ccee38643", "score": "0.6387335", "text": "public void define_DataModel() {\n\n\t\t//\tKey data\n\t\tkey(INSTANCE_ID); // GCF Instance Identifier\n\t\t\n\t\tDataSet ide = seg(IDE); // Identity\n\t\tide.add(FNA); // firstname\n\t\tide....
1d5e95d9338a6a72ccbe949c1fe793a3
Enqueues a new packet to be sent.
[ { "docid": "4749e865de18ba228be4749690916673", "score": "0.0", "text": "public void send(Opcode opcode, Serializable datum);", "title": "" } ]
[ { "docid": "fc4a6753f9d36d73f4a9fc356ae38351", "score": "0.75189215", "text": "public void send(NetPacket packet) {\n\t\tsendQueue.add(packet);\n\t}", "title": "" }, { "docid": "11d5a03176bc8345f2df85e072ada1e2", "score": "0.6896925", "text": "private void sendNewPackets() {\n\t\twhi...
9e7ca130e454e8b45a8333be88e2fb14
Make this executor terminate after this task so that the test can tell when futureResult has received resultOfCombiner.
[ { "docid": "9bd06cb0defe8a459b8eb46f3811a863", "score": "0.65080553", "text": "@Override\n public ListenableFuture<String> call() throws Exception {\n executor.shutdown();\n callableBlocking.await();\n return resultOfCombiner;\n }", ...
[ { "docid": "df3ed8c53759f463fc1df982d5f2158a", "score": "0.5915085", "text": "void finish(T result);", "title": "" }, { "docid": "3b589a1d7cd459919b653480326244c0", "score": "0.5760259", "text": "private synchronized void finish(@Nullable Object result) {\n finished = true;\n ...
b9ffdb3c936458d72dde67071112b916
check for required fields check for substruct validity
[ { "docid": "cd28056d7f3d266cedbb2e6ca881cec2", "score": "0.0", "text": "public void validate() throws org.apache.thrift.TException {\n }", "title": "" } ]
[ { "docid": "61271586c76f617cc5fec658961a9bd6", "score": "0.7636916", "text": "public void validate() throws org.apache.thrift.TException {\n if (obj1 == null) {\n throw new org.apache.thrift.protocol.TProtocolException(\"Required field 'obj1' was not present! Struct: \" + toString());\n ...
70bc6767ce105efd7910c59643da8225
Consolidates accounts with the same account names but different account numbers. Creates new joint account and closes old ones.
[ { "docid": "3eb24047f6593dbb1b84a5079b98eb4a", "score": "0.6924281", "text": "public static Account consolidate(Account acct1, Account acct2)\r\n { \r\n\t if ((acct1.getName().equals(acct2.getName())) && (acct1.getAcctNumber() != acct2.getAcctNumber()))\r\n\t {\r\n\t double newBalance = acct1.getBal...
[ { "docid": "3e20eff036728365769f1126a8171b57", "score": "0.6772339", "text": "public static Account Accountconsolidate (Account acct1, Account acct2) throws Exception\n\t{\n\t\tAccount newAccount;\n\t\t\n\t\t//made the second if part of the else if statement so that it would not run through everything\n...
b767a49dc55f24ee730d532855a5652b
pops off the top two elements from the operands stack, subtracts them together and pushes back the result onto the stack
[ { "docid": "88b53b8254f523c71d826e6f9ef6108b", "score": "0.7047361", "text": "private void execute_sub() {\n Token op1 = operands.pop();\n Token op2 = operands.pop();\n Token res = new Token(op2.getNumber() - op1.getNumber());\n operands.push(res);\n }", "title": "" ...
[ { "docid": "a7e678e3b61e3e2a815a1fc01641ad43", "score": "0.7800472", "text": "public static void subtract(){\n if(stack.size() < 2){\n System.out.println(\"Error: too few operands\");\n errorToken += \"E\"; \n \n }else{\n j = stack.size() - 1...
1ce005c04bd6aebb3e8b13421782b80f
Array to store constructed MST
[ { "docid": "5026f6159f93ff6ad1cbf46d63e70cb5", "score": "0.0", "text": "public void primsMST(int graph[][], int vertexCount){\n\t\tint[] parent = new int[vertexCount];\r\n\t\t // Key values used to pick minimum weight edge in cut\r\n\t\t\r\n\t\t//PriorityQueue<Integer> priorityQueue = new PriorityQueue<...
[ { "docid": "093f10d82b51e330b0e5958999593335", "score": "0.6001785", "text": "public Iterable<CyEdge> getMST();", "title": "" }, { "docid": "b09e54ad97fe64788325e627a5ffc6de", "score": "0.5970131", "text": "ArrayList<ArrayList<Integer[]>> primMST()\n {\n // Array to store c...
4345f78b7bd7875cde5eb532cddcc759
Gets the dependencies associated with this library. If no dependencies artifact exists, or the file is invalid, it will return an empty deps object.
[ { "docid": "e2b82fd4c4d06cd292914810627f5ff4", "score": "0.67082596", "text": "public LibraryDeps getDeps(DartCompilerContext context) throws IOException {\n if (deps != null) {\n return deps;\n }\n\n Reader reader = context.getArtifactReader(libSource, \"\", DartCompiler.EXTENSION_DEPS);\...
[ { "docid": "aabf33aa5d4c3b2a5b128fb095e56d3a", "score": "0.67654556", "text": "List<Dependency> getDependencies();", "title": "" }, { "docid": "be221567e9a6f566f85dd3226f322be6", "score": "0.6487437", "text": "public Dependencies getDependencies() {\r\n\t\treturn dependencies;\r\n\t}...
faa33a6b02ca58da42caec9b9fefabc1
Created by diego on 12/03/2018.
[ { "docid": "6088a0ab2e1e1256a8fc9054f9f9fe1d", "score": "0.0", "text": "public interface RecyclerViewClick {\n}", "title": "" } ]
[ { "docid": "0c69424878be03e50f19e2ca61ef640b", "score": "0.59970826", "text": "@Override\r\n\tpublic void leggi() {\n\t\t\r\n\t}", "title": "" }, { "docid": "1e34493fdecb11f6bbc24ef12eea2281", "score": "0.59785116", "text": "public void mo27791d() {\n }", "title": "" }, ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "d4733d4e3be116e4ef27b71554b93e77", "score": "0.0", "text": "@Override\n\tpublic int insert(Object ob) {\n\t\treturn 0;\n\t}", "title": "" } ]
[ { "docid": "3d9823aba51891281b4bbd4b1818b970", "score": "0.6671074", "text": "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.6567672", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "ti...
49f7ff62de1489b2f8c973bcc9d07a6a
Creates a new instance.
[ { "docid": "fbdd27c71ba8f3e2a1e5c518912f838a", "score": "0.0", "text": "public GameCollisionListener(GameWorld gameWorld) {\n\t\tthis.gameWorld = gameWorld;\n\t}", "title": "" } ]
[ { "docid": "fdffc36bddf3560668cb41c0e1b28dba", "score": "0.7838403", "text": "Instance createInstance();", "title": "" }, { "docid": "fdffc36bddf3560668cb41c0e1b28dba", "score": "0.7838403", "text": "Instance createInstance();", "title": "" }, { "docid": "8400e8b17579fb4e...
106f359cd0aa326eb7087a7e248e2e33
Constructs a new PrecursorSet object.
[ { "docid": "b7d0a264f99287fb48ae46d0f53f0401", "score": "0.50353366", "text": "public PrecursorSet(RouteAodv thisNode) {\n\t\t\tthis.thisNode = thisNode;\n\t\t}", "title": "" } ]
[ { "docid": "2c83ec28a8c7bd644e6b099e5e1d7771", "score": "0.5954486", "text": "public ParetoSet() {}", "title": "" }, { "docid": "58947c6f34dd7baca09f50dd3ef02c5d", "score": "0.57615495", "text": "public Refset() {\n }", "title": "" }, { "docid": "4a650875ec6f8a72747e15...
a1dcb4d0b5e83ac108cfc8df715d0ee9
Returns all the action logs.
[ { "docid": "1ff7e9a4815e5ea24c85f7d2b706f25d", "score": "0.7643614", "text": "public static java.util.List<org.gnenc.yams.model.ActionLog> findAll()\n\t\tthrows com.liferay.portal.kernel.exception.SystemException {\n\t\treturn getPersistence().findAll();\n\t}", "title": "" } ]
[ { "docid": "f814dd4209d08ed4e1aa2aa6972e2541", "score": "0.7584855", "text": "public ArrayList<Log> getAllLogs() throws Exception;", "title": "" }, { "docid": "d5b6c7a3668606277630e3a0baa3534b", "score": "0.75489765", "text": "public List<TransactionLogEvent> logs() {\n\t\treturn int...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "e7608574b3350e590f8adb97e862b5e4", "score": "0.0", "text": "@Override\n\t\t\t\t\t\tpublic void onClick(View v) {\n\t\t\t\t\t\t\t((MainActivity) getActivity()).mSaveDialog.dismiss();\n\t\t\t\t\t\t}", "title": "" } ]
[ { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.66613346", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "81758c2988d9979c7d4b3fd5b3cce0e5", "score": "0.65680635", "text": "@Override\r\n\tpublic void pular() {\n\r\n\t}", "title": "" }, {...
e07a1ce64ad243f3235ada6308ad51df
menutup sambungan ke database
[ { "docid": "87b1aff956fc12c1e5e78ada10c6de6e", "score": "0.0", "text": "public void close(){\n dbHelper.close();\n }", "title": "" } ]
[ { "docid": "12298902e9b956325da1972b9952fe5d", "score": "0.6664717", "text": "private void liste_DB_geklickt() {\n\t\tfilm_aus_liste_geklickt(lv_datenbank, 'd');\n\t}", "title": "" }, { "docid": "7c843df749a13f9c9b0631fcbbbeb3b8", "score": "0.65815276", "text": "private void loadData...
16137fbf2fcbd3469daa298ea99927b3
Publish the value of source nextEvents from device Agenda. source nextEvents as AgendaEvent [];
[ { "docid": "3e2a9753b9f2aaf5380411e94f53ae13", "score": "0.6961826", "text": "protected void publishNextEvents(java.util.List<fr.inria.phoenix.diasuite.framework.datatype.agendaevent.AgendaEvent> newNextEventsValue) {\n _nextEvents = newNextEventsValue;\n getProcessor().publishValue(getOut...
[ { "docid": "bfa6ff32c1e105aa578c018a1d40c996", "score": "0.629239", "text": "protected void publishNextEvent(fr.inria.phoenix.diasuite.framework.datatype.agendaevent.AgendaEvent newNextEventValue) {\n _nextEvent = newNextEventValue;\n getProcessor().publishValue(getOutProperties(), \"nextE...
0a820d89e96aacf674d530a7266f22a2
Selecciona un cliente por su DNI y lo elimina
[ { "docid": "8f4c873e0d4514626e2f02e40e33bf40", "score": "0.70101696", "text": "public static void delete_client(String dni) {\n singleton_global.collection.remove(new BasicDBObject().append(\"dni\", dni));\n }", "title": "" } ]
[ { "docid": "ede1817f6cb14d7e7a52d7994b78fda1", "score": "0.72239935", "text": "public void eliminarRegistroCliente(){\n int indice = vista.getTablaRegistroClientes().getSelectedRow();\n if (indice == -1) {\n JOptionPane.showMessageDialog(vista, \"Seleccione una fila \");\n ...
81aa2fee9ba5f43d845848e6cb5e4403
Finde einen Makler mit gegebener Id
[ { "docid": "fb78a0babb41ecddea9bd91a5cd06acc", "score": "0.5953527", "text": "public Makler getMaklerById(int id) {\n\t\tSession session = sessionFactory.openSession();\n\t\t\n\t\tMakler makler = (Makler) session.get(Makler.class, id);\n\t\tsession.close();\n\n\t\treturn makler;\n\t}", "title": "" ...
[ { "docid": "ebb85f217fc6e2943a607144329e8f41", "score": "0.6610291", "text": "@Override\n\tpublic void apagar(long id) {\n\t\tFuncionario ref = recuperar(id);\n\t\tif(ref != null)\n\t\t\tmanager.remove(ref);\n\t}", "title": "" }, { "docid": "21ec41640ccbf42a7f6d8bb64b33452a", "score": "0...
cf8c1c9a8ad056ebd450ad33d16871b0
Returns the BaseRowStrucures which the cubeTransformationLogic depends upon.
[ { "docid": "a2d0f5fafd6b900d80ab0a1fec7acdf5", "score": "0.6296082", "text": "public static EList<BaseRowStructure> getTheDependantBaseRowStructures(CubeTransformationLogic cubeTransformationLogic ) {\r\n\r\n\t BasicEList<BaseRowStructure> dependantBaseRowStructures = new BasicEList<BaseRowStructure>...
[ { "docid": "425f370b38608407fc4d468b213f3674", "score": "0.54370624", "text": "public static EList<CubeTransformationLogic> getTheDependantFunctionalRowLogics(CubeTransformationLogic cubeTransformationLogic ) {\r\n\t BasicEList<CubeTransformationLogic> dependantFunctionalRowLogic = new BasicEList<Cub...
d7d7473f9a532c05f32f2c3182d58953
Formats a double into a string.
[ { "docid": "377eb9d3fd7d49d32a9fdbca5d0cc068", "score": "0.74711066", "text": "public String tostr (double x)\n\t {\n\t if (dd == null)\n\t { dd = new DecDouble();\n\t }\n\t if (type != 'a' && type != 'A')\n\t { dd.set (x);\n\t }\n\t else\n\t { dd.setSignAndAlt (x);\n\t }\n\t c...
[ { "docid": "411e470fd57869766626f7d2d9f2e56a", "score": "0.7909452", "text": "public final String format(double value) {\n return format(value, new StringBuffer(), new FieldPosition(0))\n .toString();\n }", "title": "" }, { "docid": "39cc0f979be984e4846cf8fc827af184"...
33b15beee12481a3969a21ea0c52f7bf
Read job configuration data in own transaction
[ { "docid": "2bb4c9e11ea075dde7fea262e75e15cf", "score": "0.58273906", "text": "public JobConfigurationData getJobConfigurationData(UUID jobUUID) {\n\n PDSJob job = assertJobFound(jobUUID, repository);\n\n JobConfigurationData data = new JobConfigurationData();\n data.jobConfiguratio...
[ { "docid": "96d036e88e436716b7fcc1dbd5f3903e", "score": "0.5787027", "text": "protected JobConf getChainJobConf() {\n return chainJobConf;\n }", "title": "" }, { "docid": "3d657598b56d2742c0f1ac1fbe523300", "score": "0.5629595", "text": "@Bean\n public Job readCSVFilesJob() {\...
fcd7a1718f8b0135f70df0ee82b15415
fillNamesArray method end buildAmountPanel1 method creates the first subpanel
[ { "docid": "e6f2c3583d00cf11373f692111cf9412", "score": "0.6651269", "text": "private void buildAmountPanel1() // buildAmountPanel1 method start\n\t\t{\n\t\t\t// creating panel objects\n\t\t\tamountLabel1 = new JLabel(\"Amount: $\");\n\t\t\tamountField1 = new JTextField(\"0.00\", 10);\n\t\t\tamountField...
[ { "docid": "590fabf72d6deeaee8c172ecb61f1fab", "score": "0.6651937", "text": "private void buildAmountPanel1() // buildAmountPanel1 method start\n\t\t{\n\t\t\t// creating panel objects\n\t\t\tamountLabel1 = new JLabel(\"Amount: $\");\n\t\t\tamountField1 = new JTextField(\"0.00\", 10);\n\t\t\tamountField...
21b6dac5eda258f9929cac7f1fecbbfd
Clean up after each individual test
[ { "docid": "2749c2d023c666c0c36f7ab8fea71b7c", "score": "0.0", "text": "@Override\n @After\n public void after() throws Exception {\n\n super.after();\n\n }", "title": "" } ]
[ { "docid": "f7dc1b1dfafa1d4f859ba31094a463c2", "score": "0.8088916", "text": "@After\n public void teardown() {\n providedTestStreams.clear();\n tc = null;\n oc = null;\n testDataDefault1 = null;\n testDataDefault2 = null;\n }", "title": "" }, { "doci...
7e3dbd27fd2cf10c1b497523f2a65ed7
Gets the supplierStatus value for this AllHotelsResult.
[ { "docid": "f86bf09036502e943e20491780027a38", "score": "0.78710705", "text": "public java.lang.String getSupplierStatus() {\n return supplierStatus;\n }", "title": "" } ]
[ { "docid": "e6a4a1c32aa9a22943272da68424b006", "score": "0.6409133", "text": "public void setSupplierStatus(java.lang.String supplierStatus) {\n this.supplierStatus = supplierStatus;\n }", "title": "" }, { "docid": "596c726b99fc26ded0dd3770f1f4c1c7", "score": "0.57810134", ...
0b1667c3306eb96ee691ce5d5c417894
Sets whether this c r m_ trn_ contact is politically exposed.
[ { "docid": "7859bfebeb189c5ea7321825d3afcfd2", "score": "0.61032844", "text": "@Override\n\tpublic void setPoliticallyExposed(boolean PoliticallyExposed) {\n\t\t_crm_Trn_Contact.setPoliticallyExposed(PoliticallyExposed);\n\t}", "title": "" } ]
[ { "docid": "8eda2574b9cc5e3a79e88302b62101f7", "score": "0.63449544", "text": "@Override\n\tpublic boolean isPoliticallyExposed() {\n\t\treturn _crm_Trn_Contact.isPoliticallyExposed();\n\t}", "title": "" }, { "docid": "25cffec265f02fc3eefe50a21e03b6a3", "score": "0.6188476", "text": ...
77adba150be2961bfaa81ab24dfb5b7a
Gets the value of the GLCededPremiumHistory field.
[ { "docid": "b97048f3334c5b6407ae141c40dec6de", "score": "0.83072585", "text": "@gw.internal.gosu.parser.ExtendedProperty\n public entity.GLCededPremiumHistory getGLCededPremiumHistory();", "title": "" } ]
[ { "docid": "3b49ee648ef29169fc5aeb495435dbee", "score": "0.765037", "text": "public void setGLCededPremiumHistory(entity.GLCededPremiumHistory value);", "title": "" }, { "docid": "1a4ca7c97168f412b56239033cfebfbb", "score": "0.64565825", "text": "@gw.internal.gosu.parser.ExtendedProp...
22c2a7fa752d749d474c5d1b6563a6b4
0================================================================0 | CUTCARD TESTS | 0================================================================0 Tests that the cut card is found when the deck size is 3
[ { "docid": "28f7b8eceed190bb01185ee10ffd785e", "score": "0.74109477", "text": "@Test\n\tpublic void testCutCardFoundCommon() {\n\t\t\n\t\tMockito.when(mockDeck.getSize()).thenReturn(3);\n\t\tassertTrue(ui.isLastRound(mockDeck));\n\t}", "title": "" } ]
[ { "docid": "cc631326bb8cf2c4c39bbda3af3a837a", "score": "0.76049703", "text": "@Test\n\tpublic void testCut()\n\t{\n\t\tDeck deck = new Deck();\n\t\tassertTrue(deck.cut());\n\t\t\n\t\tVector<Card> cardsDrawn = new Vector<Card>();\n\t\tfor (int i = 0; i <Deck.MAX_NUM_CARDS; i++)\n\t\t{\n\t\t\tcardsDrawn....
230de534ed907f86945e4a4670580e61
Delete the healthCentre by id.
[ { "docid": "37373b82dffcaebea25ae33b8885fe42", "score": "0.83169234", "text": "@Override\n public void delete(Long id) {\n log.debug(\"Request to delete HealthCentre : {}\", id);\n healthCentreRepository.deleteById(id);\n healthCentreSearchRepository.deleteById(id);\n }", ...
[ { "docid": "f86bd8984cb74ae706c7ca5b9bc09896", "score": "0.7347306", "text": "public void delete(Long id) {\n log.debug(\"Request to delete CCostCenter : {}\", id);\n cCostCenterRepository.deleteById(id);\n }", "title": "" }, { "docid": "97d3f4a2400796a8b978ac570d68ef53", ...
c95eb88529277422bfb66e88e1da91b3
methods to start and stop the clock
[ { "docid": "7f9169272b74162df03ea0e8fcfadb34", "score": "0.7236759", "text": "public void startClock() {\n\t\trunning = true;\n\t}", "title": "" } ]
[ { "docid": "f75630ede2d75d442e9245fe740311e3", "score": "0.72097987", "text": "Clock clock();", "title": "" }, { "docid": "f75630ede2d75d442e9245fe740311e3", "score": "0.72097987", "text": "Clock clock();", "title": "" }, { "docid": "ec54fb124c32462d029eeecd5525e703", ...
86a976f39af87e68e353a83cf8c11f01
Tests whether str1 is a permutation of str2.
[ { "docid": "3a1cf674b129abdb57487ca4ad59936b", "score": "0.7697993", "text": "public static boolean checkPermTest(String str1, String str2) {\n\t\t\n\t\tchar str1Arr[] = str1.toCharArray();\n\t\tchar str2Arr[] = str2.toCharArray();\n\t\t\n\t\tArrays.sort(str1Arr);\n\t\tArrays.sort(str2Arr);\n\t\t\n\t\tS...
[ { "docid": "393208966e3436e2e4646e8b91c7fd29", "score": "0.8345775", "text": "private static boolean isPermutation2(String s1, String s2){\n if(s1.length()!=s2.length()) return false;\n boolean isPermutation = true;\n char[] chs1 = s1.toCharArray(); Arrays.sort(chs1);\n char...
ff487cf5411b641009e186357bae4884
Creates an instance of type Multihull. Modifies the underlying ontology.
[ { "docid": "af21ead21f577759894585d736021a06", "score": "0.8058868", "text": "public Multihull createMultihull(String name) {\n\t\treturn delegate.createWrappedIndividual(name, Vocabulary.CLASS_MULTIHULL, DefaultMultihull.class);\n }", "title": "" } ]
[ { "docid": "d1e1fcb531dad7b8c01cdadfe92e588e", "score": "0.71079993", "text": "public Multihull getMultihull(String name) {\n\t\treturn delegate.getWrappedIndividual(name, Vocabulary.CLASS_MULTIHULL, DefaultMultihull.class);\n }", "title": "" }, { "docid": "e4b73e633bfe3fccf90405130e1a863...
67c9490e1d4f4c5750c0e6260f8a974a
/ / / / / /
[ { "docid": "e08c2ac5d36c13d5420b6fb35efd3275", "score": "0.0", "text": "public Long getUserId()\n/* */ {\n/* 81 */ return this.userId;\n/* */ }", "title": "" } ]
[ { "docid": "0022fd8a33c9a06ec94d5eca80a9a8b1", "score": "0.5473311", "text": "public void divide() {\n\t\t\n\t}", "title": "" }, { "docid": "0022fd8a33c9a06ec94d5eca80a9a8b1", "score": "0.5473311", "text": "public void divide() {\n\t\t\n\t}", "title": "" }, { "docid": "c2...
08a7f074b562ccd149d9882f3917dc5d
Search Warden By ID
[ { "docid": "7339907d692321b1c3ac621729e5132b", "score": "0.7855629", "text": "public static void searchWardenByID() {\n //Enter the Warden ID\n System.out.println(\"Enter the ID of the Warden: \");\n Scanner inputID = new Scanner(System.in);\n int idSearch = inputID.nextInt()...
[ { "docid": "40371a9700b92b52c5d2793f21863d1f", "score": "0.668294", "text": "@Override\r\n\tpublic MemberVO pwsearch(String id) throws Exception {\n\t\treturn dao.pwsearch(id);\r\n\t}", "title": "" }, { "docid": "806338f9ed1cd0e7a0d313b926db9f45", "score": "0.6483101", "text": "@Tran...
cb1853e78471ba1bec61090463ffee5d
Gets array of all "updated" elements
[ { "docid": "525d3626ffb3f42e75195c9b4b818dad", "score": "0.7660538", "text": "public org.w3.x2005.atom.DateTimeType[] getUpdatedArray()\n {\n synchronized (monitor())\n {\n check_orphaned();\n java.util.List targetList = new java.util.ArrayList();\n get_...
[ { "docid": "d0109c026cc17d183d6a57127c8f5408", "score": "0.6508229", "text": "@Nullable\n @Generated\n @Selector(\"changedElements\")\n NSEnumerator<Object> changedElements();", "title": "" }, { "docid": "76562bc383086dd604891d5aa5b55ebe", "score": "0.6396205", "text": "List...
7b4e56532305ce20c0a600ce89dac5df
.dstore.values.IntegerValue sort_condition_id = 3;
[ { "docid": "d0b23f2a04362a13bbbac0b09700c954", "score": "0.6251766", "text": "public io.dstore.values.IntegerValueOrBuilder getSortConditionIdOrBuilder() {\n return getSortConditionId();\n }", "title": "" } ]
[ { "docid": "cccbce58cc10955a7542a5b7b5f4b878", "score": "0.83376205", "text": "io.dstore.values.IntegerValue getSortConditionId();", "title": "" }, { "docid": "ab1488153ea40e8d47b856df45f78488", "score": "0.70902324", "text": "io.dstore.values.IntegerValueOrBuilder getSortConditionId...
7eb01029174f44bfeda9ba4e994589d3
This method traces out the run. It primarily creates a new instance of TrfRunTrace class, setting its properties.
[ { "docid": "52f69e27ce59cbf3ce119927bb8eb33a", "score": "0.0", "text": "private void traceVariables() throws IOException {\r\n\r\n byte[] buf = null;\r\n TrfVariable thisTrfVariable;\r\n TreeSet<TrfVariable> thisRunTraceMap;\r\n for (String runName : runMap.keySet()) {\r\n long anextvar...
[ { "docid": "fb4f65540172d499f2193908db018e88", "score": "0.67574257", "text": "public TraceRunnable() {\n _parentTraceEntry = TraceContext.getTraceEntry();\n }", "title": "" }, { "docid": "2348e1084bf2f92d847a37faf90c6a65", "score": "0.6287804", "text": "public ProgrammaticTestRi...
45bad8f0c84cb4c75a4f378734c001dc
Sets the values of all components to the corresponding parameters.
[ { "docid": "8833f829773bf60c742be2d20bb927b6", "score": "0.0", "text": "@Override\n\tdefault SimpleVec3fC set(float x, float y, float z)\n\t{\n\t\tsetX(x);\n\t\tsetY(y);\n\t\tsetZ(z);\n\t\t\n\t\treturn this;\n\t}", "title": "" } ]
[ { "docid": "68cdcc8c4dc984726e0ca1c0cda2a38a", "score": "0.8229468", "text": "protected void updateComponentsFromParameterSet() {\n for (Parameter p : parameterSet.getParameters()) {\n setComponentValue(p, parameterSet.getParameterValue(p));\n }\n ...
f92bd26615200841f04b47e6e1d359ab
required int32 L_STATE = 62;
[ { "docid": "c7d69e7a143467e63973b6970a89e5a7", "score": "0.59935826", "text": "public boolean hasLSTATE() {\n return ((bitField1_ & 0x20000000) == 0x20000000);\n }", "title": "" } ]
[ { "docid": "9a27f7eba7da64121dce4ce0de0bb3ff", "score": "0.77115184", "text": "int getLSTATE();", "title": "" }, { "docid": "e578c31d98326bd4d4617045bc0b647d", "score": "0.7036163", "text": "public int getLSTATE() {\n return lSTATE_;\n }", "title": "" }, { "docid"...
af97f4ce380ddedb2be4084f42833488
Returns true if production, or an identical production, is already in grammar.
[ { "docid": "c866a65f7a003707854158f60beeae60", "score": "0.6965126", "text": "public static boolean isProductionInGrammar(final Production production, final Grammar grammar) {\n\t\tfinal List<Production> productions = grammar.getProductions();\n\t\tfor (int k = 0; k < productions.size(); k++) {\n\t\t\ti...
[ { "docid": "6383173e15a8b4ef733e0040f06e57f2", "score": "0.6317552", "text": "public static boolean isTerminalInProductions(final Grammar grammar, final String terminal) {\n\t\tfinal List<Production> productions = grammar.getProductions();\n\t\tfor (int k = 0; k < productions.size(); k++) {\n\t\t\tif (P...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "3705f63e32b97da1179603438a41f1d9", "score": "0.0", "text": "@Override\n\tpublic void msgRegistered(double money) {\n\t\t\n\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "941cb2826e3c700358fcaba402e6bb01", "score": "0.66775143", "text": "@Override\r\n\tpublic void hissetmek() {\n\r\n\t}", "ti...
31c28ef7817875a3b15cc8db43444db9
Set the resourcebundle for the report
[ { "docid": "36480679d96e4df06fe6ff628fbebf6d", "score": "0.70108277", "text": "public void setBundle(ResourceBundle iBundle){\n this.iBundle = iBundle;\n\n addParameter(JRParameter.REPORT_RESOURCE_BUNDLE, iBundle );\n }", "title": "" } ]
[ { "docid": "e235f213c56dc59028d43e865bb39fbf", "score": "0.6623613", "text": "void setBundle(ResourceBundle bundle);", "title": "" }, { "docid": "ec9b167bd2168b949cac7e3b3d6139b6", "score": "0.61402", "text": "public void setResources()\n {\n if(listSize == 0)\n {\n ...
d815be42e4e9cee6409dfc63012ee539
Remove all the given hints from this HintedElement. Matching is done by the isEquivalent(...) function.
[ { "docid": "9071e506bd4fd10e4cb5872d785683dd", "score": "0.8001875", "text": "public void removeHints(Collection hints);", "title": "" } ]
[ { "docid": "1ab665d606973954419cfb748e99f7c6", "score": "0.7459487", "text": "public void removeHintedElements(Collection hintedElements);", "title": "" }, { "docid": "7651b22e82038df23e3565f5605551cd", "score": "0.71885836", "text": "public void clearHintedElements();", "title":...
308e6b2d8e34fed1d3ef26805b47483c
Getter for all the Sets within this SetList Returns: All the Sets in an ArrayList
[ { "docid": "a5e0d062ffbad28f2441627be75f82d5", "score": "0.84862834", "text": "public ArrayList<Set> getAllSets() {\n return this.allSets;\n }", "title": "" } ]
[ { "docid": "80b5086774284b125cfda1087fb630e4", "score": "0.7499205", "text": "public set[] returnSetlist(){\r\n return SetList;\r\n }", "title": "" }, { "docid": "af48c86adc6b76aab4025ff776cad371", "score": "0.7429126", "text": "public SetList getSetListByDate() {\n Set...
d9db0327e1c161ef80cbcf015a7476d4
Author: Claude Nanjo GENERATED CODE DO NOT EDIT Generated or updated on: Thu Jul 11 13:57:04 PDT 2019 Copyright: University of Utah License: Apache 2
[ { "docid": "797f7a48a933bfab15966b3af84a143f", "score": "0.0", "text": "public interface Group extends CareRecipient {\n\n\n\t\t Boolean getActive();\n\n\t\t void setActive(Boolean arg);\n\n\t\t String getType();\n\n\t\t void setType(String arg);\n\n\t\t Boolean getActual();\n\n\t\t void setActual(Boole...
[ { "docid": "db6adf52deb87c2723f80c6df873c47d", "score": "0.6383777", "text": "public void mo4741aD() {\n }", "title": "" }, { "docid": "453637afdcc490de35afa10f347a4092", "score": "0.6295876", "text": "protected void mo4927v() {\n }", "title": "" }, { "docid": "...
2c49e98a7cd8fb74f91ef74a22d4c66e
Created by ps11 on 03/07/17.
[ { "docid": "5bb3f9df3d4107fe85841419fdcdba99", "score": "0.0", "text": "public interface LoginCalls {\n\n @FormUrlEncoded\n @POST(\"/appAPI/login.php\")\n Call<Login> login(@Field(\"Login\") JSONObject details);\n\n\n}", "title": "" } ]
[ { "docid": "ffe5fe3cec40acf4b0b07ea257dfa06a", "score": "0.63943624", "text": "private void apparence()\r\n\t\t{\r\n\r\n\t\t}", "title": "" }, { "docid": "db6adf52deb87c2723f80c6df873c47d", "score": "0.6086356", "text": "public void mo4741aD() {\n }", "title": "" }, { ...
8cb553097f584de5a91f0cfa221de7e4
The type of the history event.
[ { "docid": "1b5c9c107ff28b9831dd447408abf129", "score": "0.0", "text": "public void setEventType(EventType eventType) {\n withEventType(eventType);\n }", "title": "" } ]
[ { "docid": "c61850086b4f4887d9d531d944ac5e53", "score": "0.7467598", "text": "EventHistoryType createEventHistoryType();", "title": "" }, { "docid": "539335ffa1ee436564a417f9a6f3d57c", "score": "0.70172036", "text": "public EventType getType() {\r\n\t\treturn type;\r\n\t}", "titl...
acb282516e9e835e21b1c70057764f24
Asks the user to pick a row and column for their move, validates the input, calls makeMove() method
[ { "docid": "4b7e1ba18d430ecd5ab0189573932d48", "score": "0.6983632", "text": "public void askPlayer(char player){\r\n\r\n Scanner reader = new Scanner(System.in);\r\n int row, col;\r\n\r\n do{\r\n\r\n System.out.print(\"Player '\" + player + \"' please enter a row (1-3): ...
[ { "docid": "bfdb4b4e424ca08f8f688402517e2d26", "score": "0.74846864", "text": "void makeMove() {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tSystem.out.println(\"Coordinates of next move?\");\n\t\tString input = \"\";\n\t\ttry {\n\t\t\tinput = in.readLine();\n\t\t...
f37717d86cbf677951ab4b879c97c2fe
Constructor that makes initial entries to dictionary
[ { "docid": "06b6c1aecf10ce2a30aae18557fe085c", "score": "0.629328", "text": "public Dictionary()\n\t{\n\t\thead=new Element(15,13);\n\t}", "title": "" } ]
[ { "docid": "51683639fe95d29fc28215e4261e3a2a", "score": "0.73642695", "text": "public Dictionary(){\r\n\t\tcollectionOfEntrys = new ArrayIndexedCollection<Pair<K,V>>();\r\n\t}", "title": "" }, { "docid": "d8c33416262ae59860a249d1f0d65994", "score": "0.72174406", "text": "public Magic...
d640a23e35d5c07c2a807862a656957a
/ A call to this method must be placed immediately prior to the loop that is to be exploded. /
[ { "docid": "58b7de8b9fbc9282b82e2f21adb79c48", "score": "0.48008296", "text": "@NodeIntrinsic\n // @defn ExplodeLoopNode.explodeLoop\n public static final native void explodeLoop();", "title": "" } ]
[ { "docid": "3503b5d8545fae07d92a978455076ada", "score": "0.58707875", "text": "void explode();", "title": "" }, { "docid": "cf4409f0f900da10c2ee7d6b68401927", "score": "0.5545686", "text": "private void consolidate(){\n\t\t\n\t}", "title": "" }, { "docid": "c69f014f15cd29...
892eac4325fa37ff9a99172fede2acde
Cunstruct collisionInfo from an object and it's collision point.
[ { "docid": "87e8001c720b9388dd31429e36281899", "score": "0.6704317", "text": "public CollisionInfo(Point collisionPoint, Collidable c) {\r\n this.collisionPoint = collisionPoint;\r\n this.collidableObject = c;\r\n }", "title": "" } ]
[ { "docid": "bdc43870856d93b71e31820ec3755021", "score": "0.7150155", "text": "public CollisionInfo(Point collisionPoint, Collidable collisionObject) {\n this.collisionObject = collisionObject;\n this.collisionPoint = collisionPoint;\n }", "title": "" }, { "docid": "fb097dd5d...
59833eed7017c9a7faba81db6db5afe4
Sets the place country of this campaign event.
[ { "docid": "5094aac3045169a980a49f9c53d20796", "score": "0.6967996", "text": "public void setPlaceCountry(String placeCountry);", "title": "" } ]
[ { "docid": "d88801dec21eac6d72ec6ea7c195d138", "score": "0.6551741", "text": "public void setCountry(Country country) {\n this.country = country;\n }", "title": "" }, { "docid": "d9a70014a0d5d86b1d42a76658249ed9", "score": "0.6539303", "text": "protected void setCountry(Str...
e7ba81a49d0128ac9f84cbb7992521e1
Creates new form UpdateUser
[ { "docid": "9f6a8ba3fa99f09201beaf83bffa3c7c", "score": "0.6676344", "text": "public UpdateUser() {\n initComponents();\n }", "title": "" } ]
[ { "docid": "145335e5c62d020daa4ff0581be5fe62", "score": "0.69879043", "text": "UpdateUserResult updateUser(UpdateUserRequest updateUserRequest);", "title": "" }, { "docid": "b89dc4b985a808a8267a25b24054ba5f", "score": "0.69403", "text": "User update(UpdateUserRequest request);", ...
10f88585cc74946f0aa107c9e4797e15
/ Clears the edit text and sets its text value to an empty string
[ { "docid": "e09e499cd1e22668a9744b36a4932865", "score": "0.77667695", "text": "public void clearText() {\n edtWhy.setText(\"\");\n }", "title": "" } ]
[ { "docid": "cfbc67fd423d9480035918acd47e8337", "score": "0.8299967", "text": "public void clear() {\n\t\tedt_name.setText(\"\");\n\t}", "title": "" }, { "docid": "11e48b58fa4faaacca2aab43933b5fba", "score": "0.79982036", "text": "private void emptyInputEditText() {\n editTextU...
82b0a3e672fa50436b4ba40ac507be68
Service method to delete a Produit from the existing list of Produits
[ { "docid": "3e41c91aede01456654c6b25de305c9f", "score": "0.8102452", "text": "@Override\r\n\tpublic Produit deleteProduit(Produit produit) {\r\n\t\treturn prodDao.deleteProduit(produit);\r\n\t}", "title": "" } ]
[ { "docid": "61cfa4200e3ba74f3323780b7e129dc9", "score": "0.7059286", "text": "@Override\n\t@DeleteMapping(\"/delete/commande/{id}\")\n\tpublic void deleteProduit(@PathVariable(value = \"id\")Long id) {\n\t\t this.getServiceCommande().deleteCommande(id);;\n\t}", "title": "" }, { "docid": "22a...
c28c418c34df9bcbddedbb5dfa0e7095
Interrupts buffer worker when playback thread needs next frame
[ { "docid": "58691fbc22736fedbb4fe52340ffad04", "score": "0.0", "text": "public synchronized void waitForMe(int phase){\n\t\t\tsynchronized(buff_lock){buff_stat = -1;}\n\t\t\tpb_pending_phase = phase;\n\t\t\t//pausePlayTimer();\n\t\t\tinterruptThreads();\n\t\t}", "title": "" } ]
[ { "docid": "ac4c670f453c6b099975d95eec6d2e39", "score": "0.64508635", "text": "private synchronized void interruptCurrentlyPlaying() {\n if (playThread != null) {\n playThread.interrupt();\n }\n stopPlayer();\n }", "title": "" }, { "docid": "4f4151bdde96d2c...
516be946b4f58950d2494cfaa6407305
Convierte la pila de objetos en un iterator
[ { "docid": "f51ecd9fa99cd4c5364a79292c6f2942", "score": "0.59268236", "text": "public Iterator<T> iterator();", "title": "" } ]
[ { "docid": "78891fbdbbf791353626f393d7c57e6f", "score": "0.688361", "text": "@Override\n\tpublic Iterator iterator() {\n\t\treturn pasos.iterator();\n\t}", "title": "" }, { "docid": "fa3c7bb807527fe45f42102d2f1c0eff", "score": "0.6709922", "text": "@Override\n public Iterator<BObj...
7ec27777832cdf2b4aa8627a5b93009e
Run the Folder getParent() method test.
[ { "docid": "21f9b95b3a9f4b8ef1434cc2cc31cf0b", "score": "0.701434", "text": "public void testGetParent_fixture23_1()\n\t\tthrows Exception {\n\t\tFolder fixture = getFixture23();\n\n\t\tFolder result = fixture.getParent();\n\n\t\t// add additional test code here\n\t\tassertNotNull(result);\n\t\tassertEq...
[ { "docid": "64db0447aa3bdceadb93d3dbcce7e943", "score": "0.7295284", "text": "public void testGetParent_fixture28_1()\n\t\tthrows Exception {\n\t\tFolder fixture = getFixture28();\n\n\t\tFolder result = fixture.getParent();\n\n\t\t// add additional test code here\n\t\tassertNotNull(result);\n\t\tassertE...
f37b52527027ae2ca70355cda452ceac
Set bar value from any value within it's bounds to another value within it's bounds.
[ { "docid": "df0c3e6e042d33afe13cef8466f7155c", "score": "0.6588384", "text": "public void setBarValue(Integer durationMillis, float barValue, float barValueFrom) {\n\n if (barValueFrom < minBarValue) {\n barValueFrom = minBarValue;\n }\n\n if (barValueFrom > maxBarValue) ...
[ { "docid": "698bf9a941f0f988f95e0cb4df577270", "score": "0.6469907", "text": "public void setBarValueBounds(float minBarValue, float maxBarValue) {\n\n this.maxBarValue = maxBarValue;\n this.minBarValue = minBarValue;\n }", "title": "" }, { "docid": "854a6f5380b364791d0170b3...
7707fd18624863ea2f28951d00ad7a5b
Create New Recipe Method to Build Recipes Based on Input of User
[ { "docid": "49f24d2c90a3df8dc304b6ab1200f5d4", "score": "0.5929948", "text": "public Recipe addNewRecipe() {\r\n int totalRecipeCalories = 0;\r\n ArrayList <String> recipeIngredients = new ArrayList();\r\n boolean addMoreIngredients = true;\r\n \r\n Scanner scn...
[ { "docid": "2c56af6d074ab8260f2c78aff22db3c5", "score": "0.6890289", "text": "public static void main(String[] args) {\n // build basic recipe for rice\n Recipe rice = new Recipe.RecipeBuilder(\"Rice\").addIngredient(\"Rice\", \"1 cup\")\n .addIngredient(\"Water\", \"2 cups\").addIngredient...
3e15135c1c1213f3bd3b2f90c18f5264
required uint32 reply_mode = 3 [default = 0]; required uint32 reply_mode = 3 [default = 0]; 1 is push, 0 N is reply times
[ { "docid": "85433b4bba134fa3f93d41c7e52e08dc", "score": "0.65193194", "text": "boolean hasReplyMode();", "title": "" } ]
[ { "docid": "3b234aa8e0ef340656e9e8dc297d3e88", "score": "0.7261491", "text": "int getReplyMode();", "title": "" }, { "docid": "f7d5c00a01f5efb66f5c46a1a4cb7dbd", "score": "0.63637024", "text": "public int getReplyMode() {\n return replyMode_;\n }", "title": "" }, { ...
acf5fb4f52f4da4076844f8addcc691a
Update the rewardB value
[ { "docid": "038ce12e1d2f1d644a46a70db4d91831", "score": "0.7594851", "text": "public void setRewardB(int rewardB) {\n this.rewardB = rewardB;\n }", "title": "" } ]
[ { "docid": "b2fe5f594cb4671337b69b95d69561d6", "score": "0.666292", "text": "public void update(Feedback<Double> reward) {\n\t\t\n\t\tArrayList<I> idList = getPolicy().getActionDomain().getIDList();\n\t\tI lastChosen = getLastSelectedAction().getID();\n\t\t\n\t\tdouble currentProbability = 0.0;\n\t\tdou...
2b7c58df82f09c30de8c8aa5a76755cb
getY return the value of y
[ { "docid": "6786a2abfe9d0c0d3f84c15219f9e2d2", "score": "0.8431861", "text": "public int getY() {\r\n\t\treturn y;\r\n\t}", "title": "" } ]
[ { "docid": "c68185b923c3a1ff1c47ef1ba750f371", "score": "0.87826383", "text": "public double getY() { return y; }", "title": "" }, { "docid": "c68185b923c3a1ff1c47ef1ba750f371", "score": "0.87826383", "text": "public double getY() { return y; }", "title": "" }, { "docid":...
6eb24511764ddf261389d0943ad588e7
Provide a suitable constructor (depends on the kind of dataset)
[ { "docid": "3a5fce8ecfa8fc60c170806abb90ea5a", "score": "0.0", "text": "public RVAdapter(ArrayList<String> myDataset, int flag) {\n\n mDataset = myDataset;\n View_flag = flag;\n }", "title": "" } ]
[ { "docid": "50061a59a18fa2814e69a5e23dedc038", "score": "0.6672366", "text": "public DataSet() {\n\tnumTrainExs = 0;\n\tnumTestExs = 0;\n\ttrainEx = new int[0][];\n\ttrainLabel = new int[0];\n\ttestEx = new int[0][];\n\tnumAttrs = 0;\n\tattrName = new String[0];\n\tattrVals = new String[0][];\n\tclassNa...
39989c651735f3a246e9bb8525638e45
This method is called just before the dialog is made visible. All of the controls have been constructed at this point. Derivitive classes may override this method to set the initial values of the controls in the dialog.
[ { "docid": "2b78a999e85534f335f7baefa2f92124", "score": "0.6616529", "text": "protected boolean initializeControls() {\n\n\t\treturn true;\n\t}", "title": "" } ]
[ { "docid": "5b039848fdb8bb7dc101efd6a4207565", "score": "0.7340045", "text": "protected void initDialogAfterVisible() {\n }", "title": "" }, { "docid": "2e5ff1d3134ffc87c94a1b96e18ce8c4", "score": "0.71161836", "text": "protected void initDialog() {\n }", "title": "" },...
555f682d8c280ec555d7ae052e0af06b
We can safely assume an element has only one type associated with it
[ { "docid": "3c6a1f4b3d37e1bb40ef0e5e36b8aeca", "score": "0.0", "text": "public void serialize(final javax.xml.namespace.QName parentQName,\r\n javax.xml.stream.XMLStreamWriter xmlWriter, boolean serializeType)\r\n throws javax.xml.stream.XMLStreamException,\r\n org.a...
[ { "docid": "1938a90678111162b696b65ae961336b", "score": "0.6807427", "text": "boolean hasElemType();", "title": "" }, { "docid": "1938a90678111162b696b65ae961336b", "score": "0.6807427", "text": "boolean hasElemType();", "title": "" }, { "docid": "1938a90678111162b696b65a...
e7d25c806353c4774c8aca22c34a3939
The first row (i.e. The header)
[ { "docid": "0c48ec84a7cafccd3559561c2a1bc70c", "score": "0.0", "text": "public List<String> getSpreadsheetHeader() {\n return Collections.unmodifiableList(spreadsheetHeader);\n }", "title": "" } ]
[ { "docid": "9edaa5adde975455aebe080c83cf3759", "score": "0.7644351", "text": "public static String getFirstRowFirstColumn(){\n\n return getCEllValue(1,1);\n }", "title": "" }, { "docid": "32e9241672615b6969caf532b8eb17bd", "score": "0.75844455", "text": "public LinkedList g...
28c21f78858df94b6b5e42cdd68d143a
End of deepCopy method
[ { "docid": "652a3200e03d1bb72f3a7410db9cacd0", "score": "0.0", "text": "public String toString() {\r\n\t\treturn \"\\n\\tAccountID: \" + accountID + \r\n\t\t\t\t\"\\n\\tName: \" + name + \t\t\t\t\r\n\t\t\t\t\"\\n\\tPhoneNumber: \" + phoneNumber + \r\n\t\t\t\t\"\\n\\tAddress: \"\t+ address;\r\n\t}", ...
[ { "docid": "1be5b0de1da83a687d2f56bbea68547c", "score": "0.7884923", "text": "public IDeepCopy deepCopy();", "title": "" }, { "docid": "4ce652d9b8bb12a240975a93c69cfc4e", "score": "0.7837703", "text": "Copiable deepCopy() throws InvalidIndexException, UncopiableException;", "titl...
96fb84c6142826e7e68d8c150fdb1f96
/ JADX WARNING: Code restructure failed: missing block: B:5:0x0010, code lost: return (sun.misc.Unsafe) java.security.AccessController.doPrivileged(new com.google.common.primitives.UnsignedBytes.LexicographicalComparatorHolder.UnsafeComparator.AnonymousClass1()); / JADX WARNING: Code restructure failed: missing block: ...
[ { "docid": "1e9ad0426dd9ab16897df424b16009af", "score": "0.58422965", "text": "private static sun.misc.Unsafe getUnsafe() {\n /*\n sun.misc.Unsafe r0 = sun.misc.Unsafe.getUnsafe() // Catch:{ SecurityException -> 0x0005 }\n return r0\n ...
[ { "docid": "07e653c99dc10fe99526c3424deee722", "score": "0.70150495", "text": "public static java.lang.String m19876c() {\n /* JADX: method processing error */\n/*\nError: java.lang.NullPointerException\n\tat jadx.core.dex.visitors.regions.ProcessTryCatchRegions.searchTryCatchDominators(ProcessTr...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "b503fc7fa1f36527045b729accf7ab38", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n getMenuInflater().inflate(R.menu.menu_main, menu);\n return true;\n }", "title": "" } ]
[ { "docid": "f7f80efb09064a7f639e932aa0a3f649", "score": "0.7222275", "text": "public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {\n super.onCreateOptionsMenu(menu, inflater);\n\n if (current_object == null ) {\n getActivity().invalidateOptionsMenu();\n// ...
1dbc318372a5c9a50c0433d638cf22fc
/ / / / / / / / / /
[ { "docid": "9bc5475348956e4e716ad960d4baccef", "score": "0.0", "text": "public boolean replaceIn(StringBuilder source) {\n/* 797 */ return replaceIn(null, source);\n/* */ }", "title": "" } ]
[ { "docid": "d4e5d5fe38cc475eeac92d4fdadfd133", "score": "0.5369933", "text": "public double getWidth() { return 1; }", "title": "" }, { "docid": "cd84ee1a68505d1781a1a85ddb9de6de", "score": "0.5316938", "text": "String ring();", "title": "" }, { "docid": "51020f1896955f4...
3cc21096b6eca779a688539d1968913e
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.
[ { "docid": "1a239553d1a9a50807c9256d7901f3e1", "score": "0.0", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n int id = item.getItemId();\n\n //noinspection SimplifiableIfStatement\n if (id == R.id.action_settings) {\n return true;\n ...
[ { "docid": "7c8036532d9f85ff825fd1f6fa38243a", "score": "0.7871165", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n switch (item.getItemId()) {\n // Respond to the action bar's Up/Home button\n case android.R.id.home:\n // Laun...
6b9fce238f2f782889c30491fa463140
Obtiene los usuarios y administradores de la base de datos y los almacena en una lista
[ { "docid": "1c4ff077684f91aff70f830496552ac3", "score": "0.0", "text": "private void obtenerValoraciones() {\n\t\tValoracionDAO valoracionDAO = new ValoracionDAO();\n\t\tArrayList<Valoracion> valoracionest = new ArrayList<Valoracion>();\n\t\tvaloracionest = valoracionDAO.listaDeValoraciones();\n\t\tIter...
[ { "docid": "b3336b2c1d9f0b44a833ddb658ccc1d7", "score": "0.77391773", "text": "private static ArrayList<Usuario> obtenerUsuariosAlmacenados(){\n\t\t\n\t\treturn usuarios;\n\t}", "title": "" }, { "docid": "08c80e2a0b008c1954f934296823ccb1", "score": "0.7288567", "text": "private void ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "86f6687426527b26eb33e3c389058a95", "score": "0.0", "text": "@Override\n\tpublic void mostrarDados() {\n\t\tSystem.out.println(\"Conta Poupança:\");\n\t\tSystem.out.println(\"Saldo:\"+this.saldo);\n\t\tSystem.out.println(\"Numero da Conta:\"+this.numerodaconta);\n\t}", "title": "" } ]
[ { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.66616714", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "81758c2988d9979c7d4b3fd5b3cce0e5", "score": "0.6566483", "text": "@Override\r\n\tpublic void pular() {\n\r\n\t}", "title": "" }, { ...
acd37caebbcd17817b9a4facbe2bfb71
Replace the contents of a view (invoked by the layout manager)
[ { "docid": "798edc4a76d1ef5a98ad6b9c4c456dce", "score": "0.0", "text": "@Override\n public void onBindViewHolder(MyViewHolder holder, int position) {\n // - get element from your dataset at this position\n // - replace the contents of the view with that element\n ...
[ { "docid": "49e78471ad4cd6854ee0c4fc6f62b5c3", "score": "0.71087277", "text": "public void updateView();", "title": "" }, { "docid": "7c5487cd0dd67def7a9031ed811a7395", "score": "0.7083809", "text": "protected abstract void updateView();", "title": "" }, { "docid": "06331...
1f4f0b065a23d4a3f9fb008a0e5a3360
automatically set the next JoinProperty when add is invoked so multiple add invocation would result in chain of join properties
[ { "docid": "334e36126b9622b6a6a13088d5edb515", "score": "0.54309624", "text": "public JoinPropertyManualBuilder add(String leftPrefix,String leftElementName,String rightPrefix,String rightElementName)\n\t\t{\n\t\t\t\n\t\t\tif(jp.getJoinInfo()==null)\n\t\t\t{\n\t\t\t\tjp.setJoinInfo(joinInfoBuilder.build...
[ { "docid": "87e6debf28f1f98125f0b08d20649e41", "score": "0.6203446", "text": "public void addJoin(JoinMetaData jnmd)\n {\n if (jnmd == null)\n {\n return;\n }\n if (isInitialised())\n {\n throw new NucleusUserException(\"Already initialised\");...
3767daa42032bc95c53a2f1dab2b4e96
This method returns the value of the "scale" attribute.
[ { "docid": "4e7600a224fb2c741347648a6f59f571", "score": "0.8699966", "text": "public double getScale() {\r\n String w = actual.getAttribute(SCALE);\r\n return w.isEmpty() ? 1.0 : Double.parseDouble(w);\r\n }", "title": "" } ]
[ { "docid": "350fb2a0f7c0c5267f14da8315690737", "score": "0.8770574", "text": "public double getScale() {\n return this.scale;\n }", "title": "" }, { "docid": "815523afa16d92677341443af1648f4c", "score": "0.8738679", "text": "public double getScale() {\r\n return scale;\r\n...
590f7ea8502f812fbe7125fec0ca496f
$ANTLR end "rule__XAdditiveExpression__Group_1__0" $ANTLR start "rule__XAdditiveExpression__Group_1__0__Impl" ../org.xtext.example.hellocustomecore.ui/srcgen/org/xtext/example/hellocustomecore/ui/contentassist/antlr/internal/InternalHelloCustomEcore.g:5521:1: rule__XAdditiveExpression__Group_1__0__Impl : ( ( rule__XAdd...
[ { "docid": "6ba3faf1c357dc0f6de172757429ed8d", "score": "0.8187302", "text": "public final void rule__XAdditiveExpression__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.hellocustomecore.u...
[ { "docid": "38da58586cc9aae4b7c6cf5a5f380143", "score": "0.8355842", "text": "public final void rule__XAdditiveExpression__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.hellocustomecore.ui/sr...
6712dae13023f48fbd75e87b8c43981c
protected Random gaussianNoise = new Random();
[ { "docid": "6fa914ed511670fbda6e0f937fe4efe6", "score": "0.0", "text": "public Triangular(String str_initial_time,String str_time_step,String str_final_time,\r\n\t\t\t\t\t\tString str_start_time_triang,String str_end_time_triang,\r\n\t\t\t\t\t\tString str_initial_value,String str_final_value,\r\n\t\t\t\...
[ { "docid": "fe85c32411dff703dd34de2e8b731dea", "score": "0.71185845", "text": "float getNoise();", "title": "" }, { "docid": "1904eafbeaf570e944280defad3f3c86", "score": "0.70392364", "text": "@Override\n\tpublic void makeNoise() {\n\t\t\n\t}", "title": "" }, { "docid": "...
f531fec98b64e207f5c2cb28a9488181
to check that the givenTime if it is less than curr system time
[ { "docid": "8960fb53294f397a93055c762025247f", "score": "0.74636084", "text": "private boolean givenGreaterThanSysTime(String givenTime){\n dateUtil du=new dateUtil();\n if(du.givenTimeGreaterSystime(givenTime)){\n \t return true;\n }else{\n \t return false;\n }\n}", "title": "" } ]
[ { "docid": "5b57e25c6948f63bb87e5f3cc3c2f19c", "score": "0.7210005", "text": "public boolean lessThan (Time t){\n if (toMins()<t.toMins()){\n return true;\n } else {\n return false;\n }\n }", "title": "" }, { "docid": "17da68b506db6cc1bb32219965e...
5e62a1323ca09612755d8011d6624eec
Created by liuxuhui on 2017/9/7.
[ { "docid": "cfb67f8bb22d1156ecf5948e306e01c3", "score": "0.0", "text": "public interface MaterialCategoryMapper {\n\n public List<MaterialCategory> getMaterialCategoryList(Map<String, Object> params);\n\n public Integer getMaterialCategoryCount(Map<String, Object> params);\n\n public MaterialCa...
[ { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6503103", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "f777356e2cd2fecd871f35f7e556fda8", "score": "0.6471676", "text": "public void mo3640e() {\n }", "title": "" }, { "docid"...
025cb1282b4283b94a8c7e669a60fc8a
Get default minimum vertical recovery distance in internal units
[ { "docid": "384dbb410e0e40551cbe65421d0a66ad", "score": "0.79169357", "text": "public static double getMinVerticalRecovery() {\n return parameters.getMinVerticalRecovery();\n }", "title": "" } ]
[ { "docid": "1c0b72e83073bfa9c9fc5fc2184180e0", "score": "0.73562753", "text": "public static double getMinHorizontalRecovery() {\n return parameters.getMinHorizontalRecovery();\n }", "title": "" }, { "docid": "f45c157d818da7bcae8af205c6b42faf", "score": "0.7080554", "text": "publ...
da0fb6c14ace5809ac73894a367373e2
Returns a list of lines that make up the shape
[ { "docid": "841a54904a413dc28356c8e6fcb23596", "score": "0.697175", "text": "public Line[] getLines(){\r\n Line[] lines = new Line[getPoints().length];\r\n for(int lineIndex = 0; lineIndex < getPoints().length - 1; lineIndex++){\r\n lines[lineIndex] = new Line(getPoints()[lineIn...
[ { "docid": "6cfa4c2696477f4cf3a7d58f3dafc607", "score": "0.7893278", "text": "public abstract Vector<HoughLine> getShapeLines();", "title": "" }, { "docid": "95e05a198bd7db8c1fedeff9ba6bf81c", "score": "0.72100747", "text": "public abstract Vector<HoughLine> getLines();", "title"...
8228270abd083fc485e87446ac30a4a9
Created by wcg on 2017/6/19.
[ { "docid": "8ff2014861790d4fbd3380ffdda0c04a", "score": "0.0", "text": "public interface GrouponProductRepository extends JpaRepository<GrouponProduct,Long>{\n\n}", "title": "" } ]
[ { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6440172", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "05a606445504484958a1c21e14b7198e", "score": "0.6031121", "text": "@Override\r\n\tpublic void sapace() {\n\t\t\r\n\t}", "title": "" },...
8bc8030afac9da6d358a7e02828b65d0
Tests that getKeyAtRoot(), getKeyOfLeftChildOf(), getKeyOfRightChildOf() methods work correctly after creating a tree and checking what the methods return against what is expected.
[ { "docid": "32e3609dbd3c96ec7c9a843df2009102", "score": "0.79271656", "text": "@Test\n void testBST_019_getKey_method_work_correctly() {\n // inserts 20, 10, 30, 5, 15, 25, 35 to create a perfect, height-balanced tree of height 3\n try {\n bst2.insert(20, \"1st key inserted\");\n bst2.i...
[ { "docid": "743c0c90e5203198488a5624aeb1e8df", "score": "0.7597964", "text": "@Test\n void testBST_018_getKeyAtRoot_Left_Child_Right_Child() {\n // checks if getKeyAtRoot returns null when root is null\n if (bst2.getKeyAtRoot() != null) {\n fail(\"getKeyAtRoot() did not return null when root...
825535910dd54de72a677aafbba79fe8
Utility method for getting one of three types of effects based on the key words, SHAKE_EFFECT, PULSATE_EFFECT, HIGHLIGHT_EFFECT.
[ { "docid": "0f73f870984d55b0c021a718f926e948", "score": "0.6873229", "text": "private static Effect effectFactory(String effects) {\r\n if (SHAKE_EFFECT.equals(effects)) {\r\n return new Shake();\r\n } else if (PULSATE_EFFECT.equals(effects)) {\r\n Pulsate pulsate = n...
[ { "docid": "efc56e7829917a58e76c801e5fdb0e3f", "score": "0.68463755", "text": "int getEffectType();", "title": "" }, { "docid": "efc56e7829917a58e76c801e5fdb0e3f", "score": "0.68463755", "text": "int getEffectType();", "title": "" }, { "docid": "00b7a52e35e34cea4c85389d64...
10a28c35e8152aae363406ec47f6ce1e
Returns the current rule change proposal.
[ { "docid": "cae97d11592fc602d74cd2f406e416c5", "score": "0.7186359", "text": "public ProposeRuleChange getCurrentRuleChange() throws NoExistentRuleChangeException {\n\t\tif (currentRuleChange == null)\n\t\t\tthrow new NoExistentRuleChangeException(\"There is no valid rule change proposition.\");\n\t\tel...
[ { "docid": "8c078f8f0dc41b6b467bbea3276342c0", "score": "0.6004277", "text": "public double getChange() {\n\t\treturn this.change;\n\t}", "title": "" }, { "docid": "8f8523d1dbb316aca5e19bb6e14b9813", "score": "0.59823805", "text": "public ProteinChange getProteinChange() {\n r...
84d04f82451a8074d6be9871d82cb791
Sets the "items" attribute with a collection of InventarioTerminal entities that are retrieved from Terminal?cap_first and returns the navigation outcome.
[ { "docid": "e06cf5e205d0b08881fe0de08c1bc6a9", "score": "0.6394639", "text": "public String navigateInventarioTerminalList() {\n if (this.getSelected() != null) {\n FacesContext.getCurrentInstance().getExternalContext().getRequestMap().put(\"InventarioTerminal_items\", this.getSelected...
[ { "docid": "6739ee62e90cebd9b76518a3501fa902", "score": "0.5941758", "text": "public void itemsTerminal() {\n //new PosDAO().obtenerTerminales(this, con);\n terminales = new ArrayList<SelectItem>();\n for (int i = 0; i < listaTerminales.size(); i++) {\n if (listaTerminale...
8dc9be75991215a0a5a03a697218cd0a
Created by david on 22Jun17.
[ { "docid": "842a83af60b8089053f9bd5b91fd04a9", "score": "0.0", "text": "@Repository\npublic interface RoomDao {\n\n boolean createRoom(Room room);\n\n Room getRoomById(long id);\n\n Room getRoomByName(String roomName);\n\n boolean updateRoom(Room room);\n\n boolean deleteRoom(long id);\n\...
[ { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6074939", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "05a606445504484958a1c21e14b7198e", "score": "0.5680808", "text": "@Override\r\n\tpublic void sapace() {\n\t\t\r\n\t}", "title": "" },...
eb78f866f33de456648c3d4b807f72fe
Marca letra como seleccionada. Si la letra ya fue utilizada (al encontrar otra palabra), se marca como "utilizadaseleccionada".
[ { "docid": "5d248cc97934a54aeb3e1fd2052a372c", "score": "0.681465", "text": "private void marcarLetraSeleccionada(Button celda) {\n String estadoBoton = celda.getTag().toString();\n cambiarColorBoton(celda, R.drawable.letra_seleccionada);\n\n if (estadoBoton.contentEquals(\"utilizada\")) {\n ...
[ { "docid": "c337f1c6da01b2844b4bd618b8bd0ebe", "score": "0.66391873", "text": "private boolean LesionSelect(String valor){\n\t\t\n\t\treturn model2.getSize()>0;\n\t//\tfor(int i =0 ; i<model2.getSize();i++){\n\t\t\t\n\t//\t\tif(model2.get(i).toString().equals(valor+\"(Grave)\")||model2.get(i).toString()...
02ca590984f39bba1c985a2a21821542
Returns a new object of class 'Enum Directive'.
[ { "docid": "acff1afd2bcf7f0210e1ecc2b44af48c", "score": "0.9140032", "text": "EnumDirective createEnumDirective();", "title": "" } ]
[ { "docid": "fb8ccb50262ddea448ca9fc3864da654", "score": "0.88341355", "text": "EnumAttributeDirective createEnumAttributeDirective();", "title": "" }, { "docid": "70cf6343a48b9d4cdfb612e147023d08", "score": "0.8263063", "text": "PojoAttributeDirectiveEnumDef createPojoAttributeDirect...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "2960771097a411b308f7808136f749b5", "score": "0.0", "text": "public static void m144461a() {\n if (SystemClock.elapsedRealtime() - f117958b >= 300000) {\n C46115b.m144501a((Runnable) new Runnable() {\n public final void run() {\n try {\n ...
[ { "docid": "63c88e93d133305f54c8551d230ea06a", "score": "0.64404553", "text": "public interface ac {\n /* renamed from: a */\n void mo2056a();\n}", "title": "" }, { "docid": "9bd329a1296b1cb6493058f77c2da42b", "score": "0.62276983", "text": "public interface C3957a {\n /...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "9f469cde9b8a8717840b90103ccb3930", "score": "0.0", "text": "@Override\n\tpublic void d() {\n\t\t\n\t}", "title": "" } ]
[ { "docid": "ef1b6c3f597a66c59960d73eadee6f25", "score": "0.6903856", "text": "private void apparence()\n\t\t{\n\n\t\t}", "title": "" }, { "docid": "4862518dedb9e169c3cc620e5ebe04c5", "score": "0.6695777", "text": "@Override\r\n\tpublic void atura() {\n\t\t\r\n\t}", "title": "" ...
307905756b67b07e3ee808aee3abc147
Gets the humanreadable designation for the image.
[ { "docid": "1bff58b300ac7f8b5f6c14d8d8ef2cd4", "score": "0.0", "text": "public String getName() \r\n {\r\n return _name;\r\n }", "title": "" } ]
[ { "docid": "e86733100deb9bdbf43898609298dd32", "score": "0.6701283", "text": "public String getShortDescription()\n {\n StringBuffer sb = new StringBuffer();\n sb.append(\"image\");\n if (imageChannelsOrNull != null)\n {\n appendShortDescription(sb, imageChannel...
e3b4bcfebed6b9f1a0d70e419e8342aa
bottom navigation view setup
[ { "docid": "509f9d4289645b11e8cf43b58c5d8852", "score": "0.75847334", "text": "private void setupBottomNavigationView() {\n Log.d(TAG, \"setupBottomNavigationView: Setting Navigation View\");\n BottomNavigationView bottomNavigationView = findViewById(R.id.bottomNavViewBar);\n Bottom...
[ { "docid": "04138cf6402e4fb8fb427f3fc601b53b", "score": "0.79995733", "text": "private void setupBottomNavigationView(){\n BottomNavigationViewEx bottomNavigationViewEx = (BottomNavigationViewEx)findViewById(R.id.bottomNavigationViewBar);\n bottomNavigationViewEx.enableAnimation(false);\n ...
468bd875ead055bcdcfa452e1152a7fb
///////////////////////////////////////////////////////////////////////////////////////////////// Get & Set Methods Returns the month abbreviated name.
[ { "docid": "f1adb74175f112760630641105a9802b", "score": "0.60976756", "text": "public String getAbbrev() {\n return name();\n }", "title": "" } ]
[ { "docid": "eeb4cf4f2b00723315a87351c30645be", "score": "0.781118", "text": "public String b() {\n return StringStatics.monthAbbreviations[getMonth()];\n }", "title": "" }, { "docid": "80f8b1996be19af27da3ee060363c1c7", "score": "0.7738589", "text": "public String getFullName(...
b3afb93a43c56326d589dc43186fda42
Adds cards to dealer's hand until dealer's score is >= 17. Displays final result of game.
[ { "docid": "4ba2b8f1b0adf15eba1edc32fce3893f", "score": "0.6455709", "text": "public void Stand(){\n System.out.println(\"Dealer Hand:\");\n printHand(dealerHand);\n System.out.println(\"Total Score: \" + dealerHand.getValueOfHand());\n\n if (dealerHand.getValueOfHand() == 21...
[ { "docid": "7f4d28693545ba8dc3595ed18a255e37", "score": "0.8038411", "text": "public void dealerTurn()\n {\n System.out.println(\"\\n\");\n System.out.println(\"The other card in the dealer's hand is a \" + hand.getCard(1));\n System.out.println(\"The dealer's hand includes: \" +...
1f9395114fa09e8db6978d5c2dc8f4ec
/ Constructors for the 3 different versions. coordinates were measured in mm. Constructor TMT 1
[ { "docid": "bf18278e7c411a99f62610c70ff199ce", "score": "0.66506606", "text": "public static TMT createTMT1(float factor) {\n\n final PointF pointD = new PointF(12.5f, 45);\n final PointF point5 = new PointF(9.5f, 21);\n final PointF pointB = new PointF(43, 25.5f);\n final Po...
[ { "docid": "66671ab2f47287e3a7ce49fe36115e59", "score": "0.6340073", "text": "private Trigonometry() {\n }", "title": "" }, { "docid": "c4ffcf88ca53a7187078b7ed9c524c89", "score": "0.6308424", "text": "public TnPoint()\r\n {\r\n }", "title": "" }, { "docid": "119...