query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
e8cd200525126254a7d7c7220430209c
======= GETTERS AND SETTERS ================
[ { "docid": "ced971ae9f8af01a44ff19adb339f1c9", "score": "0.0", "text": "public String getName() {\r\n return name;\r\n }", "title": "" } ]
[ { "docid": "9f7abaac0647d287546a4407b5e08182", "score": "0.6674369", "text": "public void setValue();", "title": "" }, { "docid": "0bdd7156418e07a48c2891d54f2fcc38", "score": "0.63563186", "text": "@Override\n\tpublic void get() {\n\t\t\n\t}", "title": "" }, { "docid": "7...
34f2aae6d61db1d2ab9ed5911953251f
Set states of showing stripes.
[ { "docid": "333513d3d46173713963be86c7adf874", "score": "0.64109427", "text": "public StripedProcessButton setShowStripes(boolean showStripes) {\n mStripedDrawable.setShowStripes(showStripes);\n invalidate();\n return this;\n }", "title": "" } ]
[ { "docid": "3ce9c9b6cbce67b153920855a6584378", "score": "0.5894634", "text": "@Override\n protected void setStates() {\n attack.setText(String.valueOf(card.getAttack()));\n durability.setText(String.valueOf(card.getDurability()));\n }", "title": "" }, { "docid": "30d37a86...
efe758004a14536839418f744770aad4
Performs the actual "appending" operation to the underlying data structure that holds the validations. Implementations shouldn't try to do more than that in this step.
[ { "docid": "c694e5ecf19040e41f4ff2ae973efa2c", "score": "0.65669954", "text": "public abstract <T extends Annotation> void performAppend(ConstraintValidation<T> validation);", "title": "" } ]
[ { "docid": "a6cddb931837b273f66437c73260adbb", "score": "0.5835396", "text": "@Override\n public void append(BaseEntity entity) {\n addErrors(entity.getErrors());\n }", "title": "" }, { "docid": "ce658f6b740c4c31b5961b6a22502345", "score": "0.5277431", "text": "gov.nih.n...
6ea48f484d42d8400473437fa5b7ccf4
controllo che la lista dei biglietti non sia vuota
[ { "docid": "bd2537b2660cc063bb7d84953a06d8a5", "score": "0.0", "text": "public void aggiungiPrenotazione(String ambiente, String mezzo, String partenza, String arrivo, String via, String dataPartenza, ArrayList<String> listaNomi,ArrayList<String> listaCognomi, ArrayList<String> listaEmail) throws ParseE...
[ { "docid": "1ffc1c4412a8badc50675b969c5c34cc", "score": "0.64266", "text": "private ArrayList<TipoElemento> inputPietre() {\n String[] simboli = {\"🌪️\",\"🔥\",\"⛰\",\"🌿\",\"🌊\",\"🌫️\",\"🐲\",\"🌩\",\"☢\",\"🧊\"};\n int qtScelte = 0;\n ArrayList<TipoElemento> scelte = new ArrayL...
ec4a1038550678776a8a144fa7f1f51d
Getter for enemy health.
[ { "docid": "2f970fee12c3e978f908d6fc85251fee", "score": "0.7509234", "text": "public int getHealth()\n {\n return health;\n }", "title": "" } ]
[ { "docid": "52e8a6249a0686268f92b78e32b3487a", "score": "0.770048", "text": "public double getHealth()\n {\n return this.health;\n }", "title": "" }, { "docid": "36490e6e3c0a55829194345abde2611f", "score": "0.765643", "text": "@Override\n public int getHealth() {\n ...
67a94ca3f15f47062553d1105f37d2b3
prepares the input for reading. Within this method you can open streams, database connections etc.
[ { "docid": "85bb437086d0fe07b33f19d2afa2d838", "score": "0.0", "text": "public void open();", "title": "" } ]
[ { "docid": "8025412521e148560182810550dd3aa5", "score": "0.63481593", "text": "public void setInput(Reader input)\n\t{\n\t\tthis.input = input;\n\t}", "title": "" }, { "docid": "4cb0b19885e1b770b2f4f08b62b76080", "score": "0.6295612", "text": "private void setInput(@NonNull InputStre...
d7ef775b2d1f7fdb2fdd4ec625470aee
Permutes the rows of matrix m, i.e. multiplying the matrix from the left with a permutation matrix represented by this (in new matrix). The length of this permutation has to be equal to the row number of matrix m.
[ { "docid": "4e1d402dee24852c660f660b3d17d5a9", "score": "0.50255007", "text": "public Matrix mul(Matrix m) {\n return mul(m, Matrix.create(m.rows(), m.cols()));\n }", "title": "" } ]
[ { "docid": "9bbacb945985f28fdbabda4c2350ab30", "score": "0.5963335", "text": "public ComplexMatrix mpower(int p){\n\tComplex [][] mat = eye(rows).matrix;\n\tfor (int c=0;c<p ;c++ ) {\n\t\tmat=((new ComplexMatrix(mat,rows,cols)).dotProduct(new ComplexMatrix (matrix,rows,cols))).matrix;\n\t}\n\treturn new...
01ee8581bf931784b796af49a01aa611
DONE 1 crie um pacote chamado dimensao DONE 2 dentro do pacote dimensao, crie outro pacote chamado bidimensional DONE 3 dentro do pacote dimensao.bidimensional, crie a classe TrianguloRetangulo
[ { "docid": "cd64ef33d57d7c0b4081d1faacf8b511", "score": "0.59594655", "text": "public static void main(String[] args) {\n // DONE 12 crie aqui um objeto da classe TrianguloRetangulo\n TrianguloRetangulo tr1 = new TrianguloRetangulo();\n // DONE 13 escreva como comentário: por que ac...
[ { "docid": "edf9bc9d96d08a34f9efbd02288d58b8", "score": "0.6304359", "text": "void listarTriangulos() {\n\t\tint contador = 0;\n\t\tfor (Figura figura : figuritas) {\n\t\t\tif (figura instanceof TrianguloRectangulo)\n\t\t\t\tcontador++;\n\t\t}\n\t\tSystem.out.println(\"Total de triángulos: \" + contador...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "22330ea318a925fc73fa74ddbb7b3b90", "score": "0.0", "text": "@Override\r\n\tpublic int followingcount(String id) throws Exception {\n\t\treturn dao.followingcount(id);\r\n\t}", "title": "" } ]
[ { "docid": "05a606445504484958a1c21e14b7198e", "score": "0.69474965", "text": "@Override\r\n\tpublic void sapace() {\n\t\t\r\n\t}", "title": "" }, { "docid": "8619203d4867f5c6d05eb9a5354405c0", "score": "0.6920049", "text": "@Override\n\t\tpublic void pintate() {\n\t\t\t\n\t\t}", ...
b477c0f36283ac5548a0877773a62583
optional string FreeFormText = 33;
[ { "docid": "6e62b102e698b6344a4b3fd39cddbdd6", "score": "0.6474425", "text": "boolean hasFreeFormText();", "title": "" } ]
[ { "docid": "ab54a14b6a43469aaa76a28068d6fa4a", "score": "0.7244743", "text": "java.lang.String getFreeFormText();", "title": "" }, { "docid": "ab54a14b6a43469aaa76a28068d6fa4a", "score": "0.7244743", "text": "java.lang.String getFreeFormText();", "title": "" }, { "docid":...
109879e0bf2cdd5c1dc35c757553f0a4
Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu);
[ { "docid": "55543fa90a5799a1d30d86b533233b24", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n \tmenu.add(Menu.NONE, R.id.action_start, Menu.NONE, R.string.action_start);\n \tmenu.add(Menu.NONE, R.id.action_settings, Menu.NONE, R.string.action_settings);\n...
[ { "docid": "a3569ff2f193bf88f7f514cf503b795a", "score": "0.82479876", "text": "@Override\n\tpublic boolean onCreateOptionsMenu(Menu menu) {\n\t\tMenuInflater inflater = getMenuInflater();\n\t\tinflater.inflate(R.menu.activity_main_menu, menu);\n\t\treturn super.onCreateOptionsMenu(menu);\n\t}", "tit...
8293a364bc62ec9e6e341ad1bc8b552f
jhipsterneedleentityaddfield JHipster will add fields here, do not remove
[ { "docid": "823574a9919d9ee0ef0470408b7a800c", "score": "0.0", "text": "public Long getId() {\n return id;\n }", "title": "" } ]
[ { "docid": "17e640e0364a3b181efeaf6a41037312", "score": "0.68674475", "text": "com.ats.aempi.configuration.xml.CustomFields addNewCustomFields();", "title": "" }, { "docid": "33fe9978047fb59fa895831bce4404d6", "score": "0.60788435", "text": "void addField(Field c);", "title": "" ...
5c740c975cd8689c07265b16e8dda18e
Update the registry's data with the values in the input registerable object that have changed since it was last checked in.
[ { "docid": "4e59f7f9fdef78d7768bfd7c026b841e", "score": "0.53260946", "text": "public void checkIn(Registerable t) throws VellumException {\n\t\ttry {\n\t\t\tif (t.isValid() && isAValidCheckOut(t)) {\n\t\t\t\t// Update the sets and maps of\n\t\t\t\t// property entries held in the registry\n\t\t\t\tPersi...
[ { "docid": "782c5120acf56affc9a9ef512caf66fb", "score": "0.63993686", "text": "void updated(RegistrationUpdate update, Registration updatedReg, Registration previousReg);", "title": "" }, { "docid": "205d807f700260b32c9458c83cc048e7", "score": "0.6046338", "text": "public void update...
523ec968187e6079f285f40f4c661e50
Get this PropertyHelper's Project.
[ { "docid": "0fcf5b107cbf5845d2d66bdbc4990aa8", "score": "0.75454426", "text": "public Project getProject() {\n return project;\n }", "title": "" } ]
[ { "docid": "5543d6e14e475d734c4cd47d8fea9601", "score": "0.75749683", "text": "public static String getProject() { return project; }", "title": "" }, { "docid": "62983efb98171966174d24ef6f8b7524", "score": "0.75102663", "text": "public String getProject() {\n return this.proje...
21135ff6453f016c88b4b4ab2f2eeef6
Gets the expiryDateTime value for this GetAccountDetailsResponseResponseHeaderAccountDetailsOfferInformationList.
[ { "docid": "2810aca89886148998d30ea8dccb14ad", "score": "0.6369281", "text": "public String getExpiryDateTime() {\n return expiryDateTime;\n }", "title": "" } ]
[ { "docid": "0247fb348c9cd30451d4e7c67724afb8", "score": "0.6328006", "text": "public String getExpiryDate() {\n return expiryDate;\n }", "title": "" }, { "docid": "7a8f2b0a51942d00b7353a61527e1b38", "score": "0.6264558", "text": "public Date getExpiryDate() {\n retur...
1033516bdad1dc4d36651d385a59dde1
Check the taglet to see if it is a legacy taglet. Also check its name for errors.
[ { "docid": "781a321b2f5c7d6568a7f0137271d6bd", "score": "0.75950545", "text": "private void checkTaglet(Object taglet) {\n if (taglet instanceof Taglet) {\n checkTagName(((Taglet) taglet).getName());\n } else if (taglet instanceof jdk.javadoc.doclet.Taglet) {\n jdk.ja...
[ { "docid": "a651dabd48ad1ff437594c1e6433fd0f", "score": "0.58235896", "text": "private void checkTagName(String name) {\n if (standardTags.contains(name)) {\n overridenStandardTags.add(name);\n } else {\n if (name.indexOf('.') == -1) {\n potentiallyConf...
5e185150f8b61ce5105970ef4a853eb6
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
[ { "docid": "a81ff1d0b7cb0f06f9e98435c1de94f5", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n button1 = new java.awt.Button();\n jPanel1 = ...
[ { "docid": "0683d7c04886f33eb3de4cd0ed5cbadc", "score": "0.74529076", "text": "public Herrendjimi1() {\n initComponents();\n }", "title": "" }, { "docid": "a265c28895719fa5abe69bc5acb37bbf", "score": "0.7301484", "text": "public FormLat3() {\n initComponents();\n ...
045870a110228b3ffdca1a3e4e01997e
set id of node
[ { "docid": "996f762d73c1a838cc77b6494f2efdc4", "score": "0.0", "text": "public void setId(int num) {\n\t\tid = num;\n\t}", "title": "" } ]
[ { "docid": "eb72c5eebf0f004eb0a3df19c58f85a9", "score": "0.80132794", "text": "public void setID(int n) {\n nodeID = n;\n }", "title": "" }, { "docid": "e58c937f22355fafb78bb1759f2d0114", "score": "0.73416775", "text": "public edu.berkeley.path.model_elements_base.Node....
a9f29557dff47a4a8456628cdad4041e
Returns all valid topological sort ordering of vertices starting at root vertex
[ { "docid": "6efbf60afe9267370f764ab865ab1d5b", "score": "0.0", "text": "public static List<Team> topologicalSort(List<Team> teams) {\n List<Team> result = new LinkedList<>();\n return result;\n }", "title": "" } ]
[ { "docid": "c450d77d380b300630fd9a15f1421cb4", "score": "0.71144116", "text": "static void allTopologicalSorts() {\n int[] indegree = new int[graph.v];\n boolean[] visited = new boolean[graph.v];\n List<Integer> list = new ArrayList<>();\n\n for (int idx = 0; idx < graph.v; i...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "a08d1abd0b7fe501bc81c2860bcf0c69", "score": "0.0", "text": "public String[] listNotificationInterests() {\n\t\treturn new String[]{\r\n\t\t\tApplicationFacade.STARTUP,ApplicationFacade.ADD_COMPLETE\r\n\t\t};\r\n\t}", "title": "" } ]
[ { "docid": "74a4209c94e08d9f5eb0b60e580f5e04", "score": "0.68867725", "text": "@Override\r\n\tpublic void comit() {\n\t\t\r\n\t}", "title": "" }, { "docid": "b645eacb329adc01490ab5013a6c4f7f", "score": "0.67295986", "text": "@Override\n\t\t\tpublic void perfom() {\n\n\t\t\t}", "t...
e6a6e61996c16189e0e2567018de1235
Toast.makeText(getApplicationContext(), "Ad failed to load! error code: " + errorCode, Toast.LENGTH_SHORT).show();
[ { "docid": "1e8b0384ba7694ca24d4a6a94a806a30", "score": "0.7357663", "text": "@Override\n public void onAdFailedToLoad(int errorCode) {\n }", "title": "" } ]
[ { "docid": "35c16aa759cd374e7449fa2738d564c6", "score": "0.8604698", "text": "@Override\n public void onAdFailedToLoad(int errorCode) {\n Toast.makeText(getContext(), \"Ad failed: \" + errorCode, Toast.LENGTH_SHORT).show();\n }", "title": "" }, { "docid":...
5bdaf8929c75e9446e17d6f1aff8a630
// STRING is for future expansion // WARNING: Any new PageType need to be added to AtsDslProposalProvider for content assist PageType: "Working" | "Completed" | "Cancelled" | PAGE_TYPE_NAME;
[ { "docid": "da7ec426366168a5bc90cb7f48307c7e", "score": "0.0", "text": "@Override\n public ParserRule getRule() {\n return rule;\n }", "title": "" } ]
[ { "docid": "016a300a22a3c4d9e070f3bcbbe912ed", "score": "0.5339061", "text": "org.jetbrains.wip.protocol.page.ResourceType type();", "title": "" }, { "docid": "141158f06fd18f543593a7829e5d476e", "score": "0.5300887", "text": "@Override\n public Class<String> getType() {\n r...
b61a38a54b4c8fe8f48aa57e983b4112
Validate that the building isn't empty and exists
[ { "docid": "ca29af95e19aa0dc2016ac2d0c94587e", "score": "0.6892019", "text": "protected void validateBuilding(Long buildingId) {\n if (buildingId == null) {\n rejectValue(\"building\", \"building.empty\");\n }\n else if (buildingRepository.findBuildingById(buildingId) == null) {\n rej...
[ { "docid": "60f973b6e38951a8e13deb62d4cf0992", "score": "0.65288764", "text": "public boolean isBuildsEmpty(Job<?, ?> job) {\n \treturn getBuilds(job).isEmpty();\r\n }", "title": "" }, { "docid": "17d335ce4d19daec61c5a7fb50eb1df4", "score": "0.6296692", "text": "public boolea...
11cdaffa1de810ab7dbd05b9f473c732
List obj = searchItem(newText);
[ { "docid": "75afbe881fc0de8a786beddde285918e", "score": "0.60929966", "text": "@Override\n public boolean onQueryTextChange(String newText) {\n Log.e(TAG, \"query start ---------\");\n String name = newText.trim();\n List<ResultInfo> obj = searchItemThree(name);\n String[]...
[ { "docid": "f17ac68ed1fe490d5099ad7f534f41ce", "score": "0.65955025", "text": "Vector<Person> searchPerson(String text);", "title": "" }, { "docid": "6138749dcc62cf3e52067cc233c9b8c7", "score": "0.6300094", "text": "List searchPersoninfo(Personinfo personinfo);", "title": "" },...
b8fb44a1b219d9b5fcdbef593639f6bb
Returns a set of EventConfig created.
[ { "docid": "0a31afacf37c5fd143e7c370c27b0fd8", "score": "0.6013689", "text": "public abstract Set<EventConfig> exportEvents(EventBuilderFactory eventBuilderFactory) throws IOException;", "title": "" } ]
[ { "docid": "e9073498b23f84c51b2d8f2d7725b469", "score": "0.6648876", "text": "public EventSetDescriptor[] getEventSetDescriptors () {\n return events;\n }", "title": "" }, { "docid": "9eb2ebfece62e7c21fff1ef63a55d0ef", "score": "0.6453997", "text": "public java.util.List<Ev...
f7c811f7e4ca9ad0a6214173c04e486a
Specifies action when the disarming button will be pressed (stay)
[ { "docid": "6cf3a73af56c5005874b2eaa0b170fd8", "score": "0.0", "text": "public void handleEvent(CancelEvent event) {\r\n\r\n\t}", "title": "" } ]
[ { "docid": "ef0f16a930f78a7743d4a1a9b9d779bb", "score": "0.62677073", "text": "public void disable(){\n pawnbutton.setOnAction(null); \n\t}", "title": "" }, { "docid": "001198c5694370ea1d6ff60087ed54d5", "score": "0.6206623", "text": "public void actionPerformed(ActionEvent c)...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "3611e7f66b8704c6c7c6c1610a8b48bc", "score": "0.0", "text": "@Override\n\tpublic void afterScript(String script, WebDriver driver) {\n\t\t\n\t}", "title": "" } ]
[ { "docid": "ef1b6c3f597a66c59960d73eadee6f25", "score": "0.6904447", "text": "private void apparence()\n\t\t{\n\n\t\t}", "title": "" }, { "docid": "4862518dedb9e169c3cc620e5ebe04c5", "score": "0.6696056", "text": "@Override\r\n\tpublic void atura() {\n\t\t\r\n\t}", "title": "" ...
c4b4a84f14a86325853bfb934cf626b5
Nastavi obrazok vypnuteho zvuku
[ { "docid": "0bb83eb412e1dab1f09d93496c37c226", "score": "0.0", "text": "public void obrazokVypnuty() {\r\n\t\tobrazok.setShape(new ImageShape(\"images\", \"sound-off.png\"));\r\n\t\tobrazok.stamp();\r\n\t}", "title": "" } ]
[ { "docid": "67a3604eb2acbe4d6322a1c80bc685b3", "score": "0.6919957", "text": "public void wypiszNazwe();", "title": "" }, { "docid": "7839d9b18f833d7ad1ccae8536c829da", "score": "0.6667176", "text": "@Override\r\n\tpublic void zielone_swiatlo() {\n\t\t\r\n\t}", "title": "" }, ...
d6d01eeb5a2268515ae8038724724dd2
TODO: Warning this method won't work in the case the id fields are not set
[ { "docid": "3a76a77ff73094002fb4ef937961be92", "score": "0.0", "text": "@Override\n public boolean equals(Object object) {\n if (!(object instanceof Usuario)) {\n return false;\n }\n Usuario other = (Usuario) object;\n if ((this.id == null && other.id != null) |...
[ { "docid": "aa83b06898e8aa259c35aa45339c0806", "score": "0.6838929", "text": "private Integer id() \t{ return id; }", "title": "" }, { "docid": "57c157d9d98d88367182b07788ed701c", "score": "0.67056817", "text": "public void setId(int id){ this.id = id; }", "title": "" }, { ...
3883a1c81ef32c51af81695ac616fed1
/ runs 20 iterations of sequential sum algorithm returns average time for the final 17 iterations
[ { "docid": "ba0b2f16f47d6c3a46cfb2c2d763b61d", "score": "0.67597693", "text": "static String runSequential(bundle b){\n float avgTime = 0;\n for(int i=0; i<20; i++){\n\t System.gc(); // garbage collector\n tick();\n treeUtils.sequentialSum(b, 0, bundle.getTrees().l...
[ { "docid": "516c81f8a94b93f4c6286371afc03730", "score": "0.6556968", "text": "public void calculateSum(){\n\t for(;multiplesOfThree<1000;){ // enumerate multiples of 3\n\t if((multiplesOfThree % 5) == 0){}else{ // do not include multiples of 5\n\t sum = sum + multiplesOfThree;\n\t ...
a9c218d1c5a5a6ebc7c661535dedf246
Logs a status object to the Eclipse error log.
[ { "docid": "8ed5374e50c8eb5ff568a9b6eeff71e1", "score": "0.65758586", "text": "public static void log(final IStatus status)\n {\n PreferencesPlugin.getDefault().getLog().log(status);\n }", "title": "" } ]
[ { "docid": "d701215af4f83c86d710e8392499020d", "score": "0.6771174", "text": "public static void log(IStatus status) {\n\t\tgetDefault().getLog().log(status);\n\t}", "title": "" }, { "docid": "e072dabe1b0e1cc36f6d0647bff468f7", "score": "0.66481537", "text": "public static void log(I...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "5f6ace8132e27a914d8a9326cefacf5e", "score": "0.0", "text": "@Override\n\tpublic CreditVo getPresentCreditInfo(int id) throws RemoteException {\n\t\tCreditPo po=creditservice.getCredit(id);\n\t\tCreditVo vo=new CreditVo();\n\t\tvo.setAction(po.getAction());\n\t\tvo.setCreditChange(po.getCredi...
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
bc3fbaf2d866c67cf97529973e150b71
Terminate the current compression run. Pending buffered data, if any, is compressed as a final block, and written out on the transport stream. If there is no pending buffered data, then an empty, final block is added. Either way, any remaining partial byte is padded with zeroes and written. The transport stream is NOT ...
[ { "docid": "5f4e314b24e41dae546d39d92c9e4cbd", "score": "0.6431885", "text": "public void terminate() throws IOException {\n prepareFlush();\n if (bufferPtr == 0) {\n writeEmptySH(true);\n } else {\n endBlock(true, bufferPtr);\n }\n if (outPtr > 0...
[ { "docid": "32241d099a779692679044098775f770", "score": "0.6674728", "text": "private void completeCompression() {\n this.deflater.finish();\n this.compressedPayloadLen += this.deflater.deflate(this.compressedPacket, this.compressedPayloadLen,\n this.compressedPacket.length ...
c82f58764fe26b943a14f87c86a0fa38
Fires an appropriate ChatEvent.
[ { "docid": "44379df8016dbe8a71bcafb8d3ca46b3", "score": "0.0", "text": "protected boolean processWhisper(String username, String titles, int rating, int gameNumber,\r\n String message){\r\n if (titles == null)\r\n titles = \"\";\r\n\r\n listenerManager.fireChatEvent(\r\n new ChatEve...
[ { "docid": "ffb851cde935dfd63eb117f48ab11237", "score": "0.6753888", "text": "public abstract void onTalk(ChatEvent event);", "title": "" }, { "docid": "9627b54ceac432e2d8762365b2c9dc1c", "score": "0.6612172", "text": "@Override\n\tpublic void onChatReceived(ChatEvent arg0) {\n\t\t\n...
ac5bc926db2ba49f2ab7d788dcc492b7
para ver si dan los mismo
[ { "docid": "4547b911fd13706ba044dcca92c91680", "score": "0.5852873", "text": "private static void check1() {\n\t\tint cantPuntos = 2000;\n\t\tPunto[] arr = new Punto[cantPuntos];\n\t\tRandom random = new Random();\n\t\t\n\t\tdouble distanciaMinimaNaive = 0;\n\t\tdouble distanciaMinimaOrdX = 0;\n\t\tdoub...
[ { "docid": "c0e02683136264498442d65fd142038b", "score": "0.6656184", "text": "@Override\r\n\tpublic boolean tabuleiroCheio() {\r\n\t\treturn (ladoAmarelo.size() < 1 && ladoVermelho.size() < 1);\r\n\t}", "title": "" }, { "docid": "405ef503f3fe3c283f830586b8a86d6b", "score": "0.63592184", ...
50813809115e7ab7e5c080c98e71e9c4
set off an event
[ { "docid": "2e08d01c92af322eddddbe428e278c07", "score": "0.0", "text": "public boolean freePearl(final PrisonPearl pp, String reason) {\n\t\tif (!prisonPearlEvent(pp, PrisonPearlEvent.Type.FREED)) {\n\t\t\treturn false;\n\t\t}\n\t\tstorage.removePearl(pp, reason); // delete the pearl first\n\n\t\tif (Pr...
[ { "docid": "60682006232cee348e5e2d354765f0a1", "score": "0.7092655", "text": "@Override\n public void off() {\n }", "title": "" }, { "docid": "7fa0dcc694d136a0ec320fcaabb0a1dd", "score": "0.6888367", "text": "public void off() {\n\t\t\n\t}", "title": "" }, { "docid"...
f5e884bb1ad52d612814bcbd8f537015
string audio = 9;
[ { "docid": "6cc90c442076d5461f505f38fc49883f", "score": "0.49897608", "text": "com.google.protobuf.ByteString\n getAudioBytes();", "title": "" } ]
[ { "docid": "5a41e0b87409862d50c835a4592077fe", "score": "0.70729655", "text": "java.lang.String getAudio();", "title": "" }, { "docid": "5a41e0b87409862d50c835a4592077fe", "score": "0.70729655", "text": "java.lang.String getAudio();", "title": "" }, { "docid": "2cd0838e6d...
f0a01798d7e6ace51488380c1c60e79d
Callbacks for class attributes (index = 2)
[ { "docid": "2392e081231360a616d7edae293c9025", "score": "0.4954534", "text": "private void receive_attributes_write(BGAPIPacket packet) {\n\t\tBGAPIPacketReader r = packet.getPayloadReader();\n\t\tint result = r.r_uint16();\n Iterator i = listeners.iterator();\n while(i.has...
[ { "docid": "c6b967b01039ad34c86a89bbd51c017f", "score": "0.6023397", "text": "@Override\n public void visitAttribute(Object attr) {\n }", "title": "" }, { "docid": "4d28737ecbeeb46bc064f0283dde7e54", "score": "0.59936255", "text": "Attribute () {}", "title": "" }, { ...
cf6d121941105b201c5bd46109fa07dd
Returns product catalog which consists of product information
[ { "docid": "12e4cee3f0e77253473f5c84afc351ac", "score": "0.629042", "text": "Catalog getCatalog() throws RemoteException;", "title": "" } ]
[ { "docid": "06892f3e38a5fd10c84e793557ac56b3", "score": "0.716195", "text": "private ProductCatalog() {\n products.put(1, new ProductSpecification(1, \"low fat milk\",\n \"Its milk but less good\", 10));\n products.put(2, new ProductSpecification(2, \"butter\",\n \"Its ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "33c82161cecc5d66f996c95269d96f27", "score": "0.0", "text": "public static void main(String[] args) {\n\n\t}", "title": "" } ]
[ { "docid": "63a51b9825ac81396e1d7ad0b9f3ed82", "score": "0.6866318", "text": "@Override\n\tpublic void 군무() {\n\t\t\n\t}", "title": "" }, { "docid": "15ae679aae74424c73fde647cf4332f6", "score": "0.68461496", "text": "@Override\r\n\t\t\tpublic void hissetmek() {\n\r\n\t\t\t}", "ti...
9690ea4fdbf5122e95e7585987512d57
Sets whether we're building a name for inclusion in a certificate
[ { "docid": "86a8833e502b20bfb74ca4c7c24d9d8a", "score": "0.62392336", "text": "public EndpointBuilder certificateName() {\n this.certificateName = true;\n return this;\n }", "title": "" } ]
[ { "docid": "ca3ef8da8f7ff176602d4fd1ddbeb0dd", "score": "0.60538894", "text": "public void setAppendName( boolean b ) { appendName = b; }", "title": "" }, { "docid": "70d094805f0af7c22c471b5231bceb02", "score": "0.588005", "text": "public void setTrueName(String value) {\n set...
6b02e1ea55d0692890b021a7d3cac19b
Deletes all files and subdirectories under dir. Returns true if all deletions were successful. If a deletion fails, the method stops attempting to delete and returns false.
[ { "docid": "7132f407ed6bbae3c20b81a0b943bf93", "score": "0.7367439", "text": "public static boolean deleteDir(File dir) {\n if (dir.isDirectory()) {\n String[] children = dir.list();\n for (int i=0; i<children.length; i++) {\n boolean success = deleteDir(new File(dir, childre...
[ { "docid": "8858aea0e666213e3b3cf0d65e31654c", "score": "0.76688164", "text": "private static boolean deleteDirectory(File dir) {\n if (dir.isDirectory()) {\n File[] children = dir.listFiles();\n for (int i = 0; i < children.length; i++) {\n boolean success = ...
dc7f17728da411d9add7e00ac68401bb
When this comment was updated last time.
[ { "docid": "c3145275cb1903a384ddbf47beba8038", "score": "0.0", "text": "public Date updatedAt() throws IOException {\n try {\n return new Github.Time(\n this.jsn.text(\"updated_at\")\n ).date();\n } catch (final ParseException ex) {\...
[ { "docid": "4a8e560fe1b80921ebd035f98a32615f", "score": "0.76720524", "text": "public Date getLast_updated_time() {\n\t\treturn last_updated_time;\n\t}", "title": "" }, { "docid": "88a823a0bf9e39c1afd01d3244fc648c", "score": "0.7524448", "text": "public String getDateLastUpdated() {\...
eca63ee389c8ec078f1d19912b6cb2c8
displays all binary places under binary number through animation
[ { "docid": "9e1abaef886da0ad3285aa56456055cc", "score": "0.66550004", "text": "public void displayBinaryPlaces(Graphics m)\n {\n \tm.setColor(Controller.textColor);\n \tm.setFont(textFont);\n \tm.drawString(thirtyTwosPlace, place32X, placesY);\n \tm.drawString(place, place32Xoverflow, pla...
[ { "docid": "abf91dbbac7ef98647c63e984e832558", "score": "0.6963356", "text": "public void displayBinaryNums(Graphics m)\n {\n \tm.setColor(Controller.textColor);\n\t\tm.setFont(displayFont);\n \tm.drawString(binaryOne, binary1X, displayNumY);\n \tm.drawString(binaryZero, binary2X, displayNum...
aee8b15999494e1c848b6b4e6d988bdf
Adds edge to this graph. Fails under the following circumstances: edge is already an element of the graph either edge or vertices is null vertices has the wrong number of vertices for the graph type vertices are already connected by another edge in this graph, and this graph does not accept parallel edges.
[ { "docid": "9079df9c693f2fb4265e7726e2c50359", "score": "0.70930994", "text": "@SuppressWarnings(\"unchecked\")\r\n\tpublic boolean addEdge(E edge, Collection<? extends V> vertices) {\r\n\t\tif(edge == null || vertices == null || vertices.size() != 2) {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\t\r\n\t\tV[]...
[ { "docid": "0528ec960bace84b2b731a3aa3fd6030", "score": "0.75805295", "text": "public boolean addEdge(E edge);", "title": "" }, { "docid": "0528ec960bace84b2b731a3aa3fd6030", "score": "0.75805295", "text": "public boolean addEdge(E edge);", "title": "" }, { "docid": "9973...
a4cb5b6398abcb2a8cab2583eb6b8a3b
Executes the create request.
[ { "docid": "d034a2204f196ed300732642adac75b6", "score": "0.0", "text": "ManagedGrafana create(Context context);", "title": "" } ]
[ { "docid": "4510b34de32370e31a77fa77f223bcdd", "score": "0.695312", "text": "@Override\n @Test\n public void create() {\n \n // Perform setup, such as initializing the type of service request\n // (e.g. CREATE, DELETE), its valid and expected status codes, and\n // its as...
a6015a01f928aea207a81fb9ffbad672
Function to set the 2D array on the textfield Grid
[ { "docid": "7b3f96ac90936e2d05e0815f108a88b5", "score": "0.68853116", "text": "public void setSudokuGrid(){\n\n for (int i=0;i<9;i++){\n for(int j=0;j<9;j++){\n if(sudoku.data[i][j]!=0)\n textFields[i][j].setText(String.valueOf(sudoku.data[i][j]));\n ...
[ { "docid": "dce2ecc6e5afc9dcfa4e4ea3124ffa9d", "score": "0.69431025", "text": "void updateGrid(){\n\n //Updating the ArrayList of all the textfield\n for (int i=0;i<9;i++){\n for (int j=0;j<9;j++){\n updateList(i,j);\n }\n }\n //Settin...
f7ef4bb302cb058c15c894fab05fc13f
In the current implementation we see which files to merge by consulting the properties file returns 1 If the value was missing or not an integer value for "NumberOfFiles" property returns 0 If the value was valid unsigned value for "NumberOfFiles" property otherwise returns the value of the "NumberOfFiles" property
[ { "docid": "59f07f530858bae61a127540fa60651c", "score": "0.72636944", "text": "public int getNumberOfFilesToMerge(String forPropFile){\n\n\t\t//System.out.println(\" **** getNumberOfFilesToMerge(Entering)\");\n\n\t\tProperties properties = getProperties(forPropFile);\n\t\tString valueNof = getAttributeV...
[ { "docid": "3955742231b52bfb38721b5d61d5ab70", "score": "0.61933607", "text": "@java.lang.Override\n public int getFilesCount() {\n return files_.size();\n }", "title": "" }, { "docid": "7688915b1b38f4e58b7a3d5670521d94", "score": "0.61737406", "text": "int getFilesCount();", ...
638586bedc7bcb3ee105da8eb47b0d1d
Method to start a transaction manually. It's important to stop the transaction
[ { "docid": "f352e3198621409db6bb1845838576a0", "score": "0.62975395", "text": "default void txBegin(String txName) {\n ResponseTimeCollector.current().ifPresent(rtc -> rtc.startTransaction(txName));\n }", "title": "" } ]
[ { "docid": "b02287a490ee7d19d999033e878d844e", "score": "0.84113353", "text": "public void startTransaction();", "title": "" }, { "docid": "01311233c1127cda9ca7f2f68510858c", "score": "0.76932114", "text": "public void beginTransaction();", "title": "" }, { "docid": "61e7...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "68542e321a6043c3bba65c2824156f2e", "score": "0.0", "text": "@Override\r\n\tpublic void soldState() {\n\t\t\r\n\t}", "title": "" } ]
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
680871aa1617ca41028d5a560498921d
Test case number: 27 /Coverage entropy=0.7590639940948603
[ { "docid": "5368ffb086f222cb6fad4bd32cc7c1a6", "score": "0.0", "text": "@Test(timeout = 4000)\n public void test27() throws Throwable {\n LovinsStemmer lovinsStemmer0 = new LovinsStemmer();\n String string0 = lovinsStemmer0.stem(\"eflax\");\n assertEquals(\"eflac\", string0);\n }", ...
[ { "docid": "b69e946924bedc7e78295f5523c1e76d", "score": "0.7024338", "text": "@Test(timeout = 4000)\n public void test14() throws Throwable {\n FileSystemHandling.appendStringToFile((EvoSuiteFile) null, \"\\tOnly outputs the source representation of the classifer,\\n\\tgiving it the supplied nam...
8e4e0e882dfeda4d264b47e010b63f36
Attempts to load the specified filename from the local file system as a dynamic library. The filename argument must be a complete path name.
[ { "docid": "b0c45cb9844b83cdc1abba8c819a5105", "score": "0.56086755", "text": "protected boolean canLoad(String pathToLibrary)\n {\n try\n {\n System.load(pathToLibrary);\n\n return true;\n }\n catch (Throwable t)\n {\n Logging.logge...
[ { "docid": "cbbca6a690e391c1d15954434a29b5fc", "score": "0.66408926", "text": "public static org.irisa.triskell.MT.BasicMTL.BasicMTLTLL.Java.Library load(\n String Filename)\n {\njava.io.ObjectInputStream in;\n\t\torg.irisa.triskell.MT.BasicMTL.BasicMTLTLL.Java.Library Lib=null;\n\t\ttry { in=...
30d4739637e332fc47b9c8dee09603fe
/Method to parse statement
[ { "docid": "835ad88399c4f96c983b98a1b20935ee", "score": "0.73889875", "text": "void ParseStmt() {\n\t\tTokenizer1 tokenizer = Tokenizer1.Instance();\n\t\tint tokNo = tokenizer.getToken().testDriverTokenNumber();\n\t\t\n\t\t/*Check which alternative this statement is*/\n\t\tif (tokNo == 32) { /*Assign st...
[ { "docid": "4265edd0970e1228f10464d5cd14ef94", "score": "0.7689004", "text": "private NodeStmt parseStmt() throws SyntaxException {\n\t\tNodeAssn assn=parseAssn();\n\t\tmatch(\";\");\n\t\tNodeStmt stmt=new NodeStmt(assn);\n\t\treturn stmt;\n\t}", "title": "" }, { "docid": "a14a2d4c3f50c5bfa8...
a49651c8ccac11fbe9fb748b29df49a4
Returns the square of specified coordinates
[ { "docid": "6d2e1fe0d8555e9179c5a56f226884b5", "score": "0.6579954", "text": "public Square getSquare(int x, int y) {\r\n\t\tif (x > 7 || y > 7 || x < 0 || y < 0) return null;\r\n\t\treturn squares[x][y];\r\n\t}", "title": "" } ]
[ { "docid": "2c91e483a0f6f2ff6286740afb98e7b3", "score": "0.80603456", "text": "String getSquare(int x, int y);", "title": "" }, { "docid": "d7aceafdb24edd197f60398925b4dbf0", "score": "0.75055283", "text": "private static Square coordToSquare(int x, int y) {\r\n\t\tint xS = (int) Mat...
87f73b6fd9b006cf9f2148272c6e999d
Convert the given object to string with each line indented by 4 spaces (except the first line).
[ { "docid": "b903fcab4b14ca87d4e227121a31edfa", "score": "0.0", "text": "private String toIndentedString(java.lang.Object o) {\n if (o == null) {\n return \"null\";\n }\n return o.toString().replace(\"\\n\", \"\\n \");\n }", "title": "" } ]
[ { "docid": "9e6d1b5dcd4619e079c1bbb422051363", "score": "0.7617954", "text": "private String toIndentedString(Object o) {\nif (o == null) {\nreturn \"null\";\n}\nreturn o.toString().replace(\"\\n\", \"\\n \");\n}", "title": "" }, { "docid": "67c02f75fe4aba72712a894854fed42e", "score":...
535119337e71262a7658825d1bf19d62
$ANTLR end "entryRuleExpression" $ANTLR start "ruleExpression" InternalArithmetic.g:421:1: ruleExpression returns [EObject current=null] : this_Addition_0= ruleAddition ;
[ { "docid": "03e09937315f9d62024f4a3e22e44677", "score": "0.77402496", "text": "public final EObject ruleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject this_Addition_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalArithmetic...
[ { "docid": "ddcecf4e045998d3aa8573b523e2625a", "score": "0.75690705", "text": "public final EObject entryRuleAddition() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleAddition = null;\n\n\n try {\n // InternalArithmetic.g:439:49: (iv_ruleAdditi...
9b8da1f87dcf926a14b4b15681ff098e
Returns the port number.
[ { "docid": "bf735c526620ffd822269eabdcbd0436", "score": "0.84116757", "text": "public int getPort() {\n\t\treturn port;\n\t}", "title": "" } ]
[ { "docid": "1dc3d1dd8a9803c46f0d6012e2fef012", "score": "0.8948034", "text": "public int getPort() {\n\t\treturn Integer.parseInt(port);\n }", "title": "" }, { "docid": "1f5c58674fbdc1b63e0a87c71fc9d574", "score": "0.87486386", "text": "public static int getPort() {\r\n\t\t\r\n\t\...
eecc4416354825831391de7d4bb282f7
The home state does not contain movies, so a message is printed to tell the user to switch to an app in order to show movies.
[ { "docid": "2997bdddc65612e8c0189e0290e3fdea", "score": "0.71520454", "text": "@Override\n public void pressMovieButton(){\n System.out.println(\"Home: You must pick an app to show movies\");\n }", "title": "" } ]
[ { "docid": "25610d349b1c51529362a0d3d3c620e8", "score": "0.6255228", "text": "public void displayHomePage() {\n boolean exit = false;\n while(!exit){\n UserInputOutput.displayHeader(\"Staff Portal\");\n System.out.println(\n \"1. Create/Update/Remov...
0c3568fc4d2ef3c17fcb4c390626244c
Get real file path from URI
[ { "docid": "31383a7ca2ef61deeaa7c97ed069113e", "score": "0.68429804", "text": "public String getRealPathFromUri(Uri contentUri) {\n String path = \"\";\n if (getContentResolver() != null) {\n Cursor cursor = getContentResolver().query(contentUri, null, null, null, null);\n ...
[ { "docid": "afae55be5fcc49ebee964d2d6b754b46", "score": "0.7742195", "text": "private String getRealPathFromURI(Uri uri) {\n // Will return \"image:x*\"\n String wholeID = DocumentsContract.getDocumentId(uri);\n\n // Split at colon, use second item in the array\n String id = ...
fc37311465429ed3dd849a6dea0f51af
Lets a user import a key pair from a PKCS 12 keystore file to the Keystore.
[ { "docid": "1dceda7d80b63f3b94f1d17b20969b43", "score": "0.8115134", "text": "private void importKeyPair() {\n\t\t/*\n\t\t * Let the user choose a PKCS #12 file (keystore) containing a public\n\t\t * and private key pair to import\n\t\t */\n\t\tFile importFile = selectImportExportFile(\n\t\t\t\t\"PKCS #...
[ { "docid": "d2818b209871f26d9e267ab12218872b", "score": "0.641797", "text": "void importPKCS12Certificate(InputStream is)\n {\n\tKeyStore myKeySto = null;\n\t// passord\n\tchar[] password = null;\n\t\n\ttry\n\t{\n\t myKeySto = KeyStore.getInstance(\"PKCS12\");\n\n\t // Pop up password dialog box\n...
16e7bcaee39c6d085a618276abda385a
Constructs a node to be used in the binary tree
[ { "docid": "f4a9c1f49e0bdd9b50624ff9ca21e15c", "score": "0.0", "text": "public Node(Comparable data) {\n this.data = data;\n left = null;\n right = null;\n }", "title": "" } ]
[ { "docid": "e56681d6e70d0ee04a086a330348afbb", "score": "0.7673171", "text": "abstract protected Node makeNode();", "title": "" }, { "docid": "0446fd1ad6dc2a9b3157ffe7b766ba79", "score": "0.7214558", "text": "public Node()\n {\n// if (Tree.DEBUG) {\n// // We can't print ...
6aabfb2005d2ecc8b41142451667a354
public abstract void onResponseReceived(ArrayList locations);
[ { "docid": "99d0c360ee77e9c848556cc6704e454e", "score": "0.0", "text": "@Override\n protected void onPostExecute(Result result) {\n if (result != null && mCallback != null) {\n if (result.mException != null) {\n mCallback.updateFromDownload(result.mException.getMe...
[ { "docid": "6fe79757cc075901c4226ba358f77b5f", "score": "0.7018743", "text": "public abstract void onResponseReceived(String response);", "title": "" }, { "docid": "fbc2aa77f2648ebe18f94a1e908882ba", "score": "0.6960764", "text": "public abstract void locationResponseHandler(Location...
5bded9fe485d78d7ed1ce69360a1f89d
Propiedad Intelectual xxxxxx Fecha ID Caso de Prueba Autor xxxxxxxxxxxxxxxxxxxxxx xxxxx Descripcion del metodo.
[ { "docid": "d7dd20404a093e3f639ed70230bd7222", "score": "0.0", "text": "public static String validarDato(Sheet hojaExcelDataPool,String campo,int columna){\n\t\ttry {\n\t\t\treturn hojaExcelDataPool.getCell(hojaExcelDataPool.findCell(campo).getColumn(),columna).getContents();\n\n\t\t} catch (Exception e...
[ { "docid": "02506020308be6d132e19a1414786656", "score": "0.6458434", "text": "public long getId_autor() {\n return id_autor;\n }", "title": "" }, { "docid": "cd6630d5c9fc3059587612e363ac44d1", "score": "0.64133", "text": "public TipoReferencia getIdAssuntoComunicacao(){\n ...
554f31bc430182af03d23bdc634a1164
Create the application window.
[ { "docid": "c337100a759ce9aea59010c8223617f5", "score": "0.0", "text": "public Processor() {\n\t\tsuper(null);\n\t\tcreateActions();\n\t\taddToolBar(SWT.FLAT | SWT.WRAP);\n\t\taddMenuBar();\n\t\taddStatusLine();\n\t}", "title": "" } ]
[ { "docid": "7481202fde20d04d903488984e73e018", "score": "0.75743645", "text": "private void createWindow() throws Exception {\n Display.setFullscreen(false);\n Display.setDisplayMode(new DisplayMode(640, 480));\n Display.setTitle(\"Program #2\");\n Display.create();\n }", ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "4f809ff3de2eeee9ef2603d5a51c322d", "score": "0.0", "text": "@Override\n\t\t\tpublic void onClick(View v) {\n\t\t\t\tpracTest3.setLinkTextColor(getResources().getColor(R.color.magenta));\n\t\t\t\tprogressBar=(ProgressBar) findViewById(R.id.progressBar);\n\t\t\t\tprogressCount+=25;\n\t\t\t\tpr...
[ { "docid": "9208773f8d675a45ef2786d0cb668514", "score": "0.654538", "text": "@Override\n\tpublic void addiion() {\n\t\t\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}", "titl...
084692faf506b099c2054b2470ebbf16
/ distance from Sun to observer (au)
[ { "docid": "3cafa7fcb123d12e0447c8068d9e333f", "score": "0.0", "text": "@Field(3) \n\tpublic iauASTROM em(double em) {\n\t\tthis.io.setDoubleField(this, 3, em);\n\t\treturn this;\n\t}", "title": "" } ]
[ { "docid": "2d6f849de314bb21935aa1d30d865522", "score": "0.6688842", "text": "private double D()\n {\n return orbitalElements.meanLongitude() - orbElSun.meanLongitude();\n }", "title": "" }, { "docid": "9e1ee5c95efe5f9ec5453a8118aef5af", "score": "0.5942645", "text": "st...
36651e99333d3ef31fc18d6a1247fd75
Model object to represent a comment posted to a Drink constructor
[ { "docid": "8e61e915b61a36d7158f4c5061d2d4a8", "score": "0.6861784", "text": "public Comment() {\n //this.comment = comment;\n }", "title": "" } ]
[ { "docid": "78304f3a82d1306fa36a5ccd286cb618", "score": "0.67094165", "text": "Comment createComment();", "title": "" }, { "docid": "0a245c160396aee10855cdfe7b33620a", "score": "0.6698932", "text": "public Comment(){}", "title": "" }, { "docid": "5b8cfb851dee6c5ff07679f6f...
df930f2f7a933dbf2164d348c808c51c
findkeyby method for unique attribute field refreshToken
[ { "docid": "dd2fbab030daa44640b6db02c6f20e10", "score": "0.73900276", "text": "java.lang.Long findKeyByRefreshToken(java.lang.String refreshToken);", "title": "" } ]
[ { "docid": "7adee5e886f953af3d19ae319e1c0379", "score": "0.6374245", "text": "public final java.lang.Long findKeyByRefreshToken(java.lang.String refreshToken) {\n Filter filter = createEqualsFilter(COLUMN_NAME_REFRESHTOKEN, refreshToken);\n\t\treturn findUniqueKeyBy(filter);\n\t}", "t...
c68dfd3ab68613e6be460a68e5aa3d3e
Saves the current properties to a file at the given path
[ { "docid": "96d9282fb22b3d685cdb8386261675b7", "score": "0.7712521", "text": "private void saveCurrentProperties(File path) {\n\t\tProperties properties = new Properties();\n\t\tproperties.setProperty(\"user\", user);\n\t\tproperties.setProperty(\"password\", password);\n\t\tproperties.setProperty(\"url...
[ { "docid": "9672c1c4bb2a9a600644fef731e80c15", "score": "0.78338087", "text": "private void saveProperties(File path, Properties properties) {\n\t\ttry {\n\t\t\tproperties.store(new FileOutputStream(path), \"\");\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace(); // TODO\n\t\t}\n\t}", "titl...
4b03dc836e424dd70a81013c49bb0430
Test case number: 125 /Coverage entropy=0.0
[ { "docid": "6816b9bc8af80b0e1f65f4c51ca3d11b", "score": "0.0", "text": "@Test(timeout = 4000)\n public void test125() throws Throwable {\n String string0 = EWrapperMsgGenerator.tickSnapshotEnd(10);\n assertEquals(\"id=10 =============== end ===============\", string0);\n }", "title": "...
[ { "docid": "7b5f59baa009a02347ccd855580f091e", "score": "0.6807658", "text": "@Test(timeout = 4000)\n public void test83() throws Throwable {\n RegressionByDiscretization regressionByDiscretization0 = new RegressionByDiscretization();\n assertEquals(2, RegressionByDiscretization.ESTIMATOR_N...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "f32a1180c91a11b387c75379d92c545d", "score": "0.0", "text": "@Override\n\tpublic BigInteger getBatchRunNo() {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "docid": "63a51b9825ac81396e1d7ad0b9f3ed82", "score": "0.6866318", "text": "@Override\n\tpublic void 군무() {\n\t\t\n\t}", "title": "" }, { "docid": "15ae679aae74424c73fde647cf4332f6", "score": "0.68461496", "text": "@Override\r\n\t\t\tpublic void hissetmek() {\n\r\n\t\t\t}", "ti...
8ce2c46ed7a767f688300fed93eee30b
/ Adds a song to the queue. Parameters: s The song to be added to the queue.
[ { "docid": "d7d17d1b96481abf0f12daf42c8a7ec0", "score": "0.90793353", "text": "public void addSong(Song s) {\n\t\tqueue.add(s);\n\t}", "title": "" } ]
[ { "docid": "4b7e4d3bd52e6d6a853d7385666af467", "score": "0.7654051", "text": "public void addSong(SongsResultsTableItem s){\r\n\t\tsongs.put(s.getTrack(), s);\r\n\t}", "title": "" }, { "docid": "ef5f151f2c2096ef706d0485a4581a1f", "score": "0.7355288", "text": "public void addToQueue(...
efd1c493a5002dd2ed38388e1d57480c
Returns the result of interpreting the object as an instance of 'Predicate Mul'. This implementation returns null; returning a nonnull result will terminate the switch.
[ { "docid": "58adf36ea0863bef062200f2efa56064", "score": "0.8262362", "text": "public T casePredicateMul(PredicateMul object)\n {\n return null;\n }", "title": "" } ]
[ { "docid": "379a7322dfac6ffb4bdfc5c04096c424", "score": "0.6490883", "text": "public T caseMulOrDiv(MulOrDiv object)\n {\n return null;\n }", "title": "" }, { "docid": "961a77dfb4d48f92592155d910f78a68", "score": "0.6456721", "text": "public T casePredicateDiv(PredicateDiv objec...
ab2b6d0b5a3e9064881e798c6edcffe2
Test case number: 6 /Coverage entropy=1.4708084763221112
[ { "docid": "e87b2c0b4c368c3287c88d2d88985356", "score": "0.0", "text": "@Test(timeout = 4000)\n public void test06() throws Throwable {\n FileUtil fileUtil0 = new FileUtil();\n ArrayList<Integer> arrayList0 = new ArrayList<Integer>();\n EvoSuiteFile evoSuiteFile0 = new EvoSuiteFile(\"/...
[ { "docid": "d6df76b4cd9e17e2c3e4b99debdb01f6", "score": "0.7319873", "text": "@Test\n public void test16() throws Throwable {\n TextDirectoryLoader textDirectoryLoader0 = new TextDirectoryLoader();\n Instances instances0 = textDirectoryLoader0.getDataSet();\n Evaluation evaluation0 = n...
e19a7cf945b003447a66a870ae14892f
para poner el fragmento del mapa
[ { "docid": "7f11ad10684ffc6ffabae8d51e9c1afe", "score": "0.51258826", "text": "private void add_fragment(Fragment fragment){\n // este metodo permite remplazar un fragment por otro () siempre hay que hacer un comit\n getSupportFragmentManager().beginTransaction().replace(R.id.container_lay...
[ { "docid": "bc9a74fd2f53b46eda8bcedc3bdd575a", "score": "0.6365253", "text": "private void createFragment(){\r\n\t\tFragmentManager fragMgr = getFragmentManager();\r\n\t\tFragmentTransaction xact = fragMgr.beginTransaction();\r\n\t\tBundle bundle = new Bundle();\r\n\t\tbundle.putInt(\"MAP_TYPE\", curren...
d22a66f2dd209a1db970607348636a52
A method to set the turn of a map
[ { "docid": "03e2d28f54c3960a027cfc7156bab6c7", "score": "0.0", "text": "public void setTurn(Turn turn) {\n this.turn = turn;\n }", "title": "" } ]
[ { "docid": "257cb90103671734c8d755f06a6a3168", "score": "0.66351324", "text": "@Override\n \tpublic void setMapValue(int x, int y, boolean value) {\n \t\tmap.set(x, y, value);\n \t}", "title": "" }, { "docid": "90e2501c7d6b0302d43b928dd76294dc", "score": "0.6455296", "text": "public ...
053b4a76c9119cea686ec82fde51f701
TODO refactor to use root.view.color
[ { "docid": "499b5872fbe83e28c0c99baaf6defca9", "score": "0.0", "text": "Color getBackgroundColor();", "title": "" } ]
[ { "docid": "f23cdfdab33e5a32ec15250504a5962f", "score": "0.72805387", "text": "public javafx.scene.paint.Color viewColor() { \n\t\treturn javafx.scene.paint.Color.WHITE; \n\t}", "title": "" }, { "docid": "2f35914973c8512e0a220bb9704c1c30", "score": "0.70112616", "text": "public javaf...
eef899f429c00cb8f98be097b4d6a757
Constructs a String with all attributes in name = value format.
[ { "docid": "81273871a739072309bbaf62054a9784", "score": "0.0", "text": "@Override\r\n\tpublic String toString() {\r\n\t\tfinal String TAB = \" \";\r\n\r\n\t\tStringBuilder retValue = new StringBuilder();\r\n\r\n\t\tretValue.append(\"FileDTO ( \").append(super.toString()).append(TAB)\r\n\t\t\t\t.appen...
[ { "docid": "679b8d8f0be0fdf1fbe42085f5849888", "score": "0.69966674", "text": "public String toString()\n {\n StringBuffer result = new StringBuffer(\"LDAPAttribute: \");\n try {\n result.append(\"{type='\" + name + \"'\");\n if( values != null) {\n ...
b61d5fd53f4889ec617a7aac6372d44d
/ access modifiers changed from: private
[ { "docid": "cdb0f27649c4d88a441b29ac8a118e2d", "score": "0.0", "text": "public void addBaseWrites(Write value) {\n value.getClass();\n ensureBaseWritesIsMutable();\n this.baseWrites_.add(value);\n }", "title": "" } ]
[ { "docid": "f79ed058cc4362775e2f8774fb25266d", "score": "0.7078309", "text": "private void privateAccess() {\n\n\t}", "title": "" }, { "docid": "d8211552b23c886f56d98e4efc7a55fa", "score": "0.6624908", "text": "private void OI() {\n\t\t\n\t}", "title": "" }, { "docid": "5...
75413d7a98692e7960314af0333359c0
Sets the primary key of this auditoria caja sorpresa.
[ { "docid": "ade9c25852939deac988147fc2355965", "score": "0.7588195", "text": "public void setPrimaryKey(long primaryKey) {\n\t\t_auditoriaCajaSorpresa.setPrimaryKey(primaryKey);\n\t}", "title": "" } ]
[ { "docid": "4437cb66c9be2a9731f52488559a4674", "score": "0.7234779", "text": "@Override\n\tpublic void setPrimaryKey(long primaryKey) {\n\t\t_segnalazione.setPrimaryKey(primaryKey);\n\t}", "title": "" }, { "docid": "6c4b844b3ea422f05982d3ed64ad75cf", "score": "0.7066095", "text": "@O...
8b8f720cdc66d57b2bea5f5c36f729c4
setter for Column COMMERCIAL_TENANT_BASIC_COPY.CID_VERIFY
[ { "docid": "860e0bcc40e3af4c58565408373158fc", "score": "0.6500067", "text": "public void setCidVerify(Short cidVerify) {\r\n this.cidVerify = cidVerify;\r\n }", "title": "" } ]
[ { "docid": "1af3556b0b14889c56826af8e76353b1", "score": "0.583565", "text": "public Short getCidVerify() {\r\n return cidVerify;\r\n }", "title": "" }, { "docid": "1af3556b0b14889c56826af8e76353b1", "score": "0.583565", "text": "public Short getCidVerify() {\r\n return cidVeri...
0afb5327cc1df33540a5f5d2d17a041e
Returns the no of ms to wait when close connection watch threads are enabled. 0 = wait forever.
[ { "docid": "b09e2c611658b533f2e2c6193578c1f9", "score": "0.6873718", "text": "public long getCloseConnectionWatchTimeoutInMs() {\n\t\treturn this.closeConnectionWatchTimeoutInMs;\n\t}", "title": "" } ]
[ { "docid": "a78e9ecd23e999c72f378508e562df14", "score": "0.65441346", "text": "long getTimeoutNs();", "title": "" }, { "docid": "d78eb6af26ee9e1a0ffc90ec6be962cf", "score": "0.65132946", "text": "int getSoTimeout();", "title": "" }, { "docid": "c3a7a71c50d99ffcfe4698f7cd7...
565a3648d732b5fe47644381bc16ad77
This method is use to login
[ { "docid": "574117b27737909248d5387b2fbb06ea", "score": "0.0", "text": "@Override\n\tpublic UserDetailDto userLogin(UserRequestDto userRequestDto) {\n\t\t// TODO Auto-generated method stub\n\t\tlogger.info(\"inside userLogin method of UserServiceImpl class\");\n\t\t/* get user object based on specific u...
[ { "docid": "9dc8680c3dd52e7f7b1ba23fee75e59c", "score": "0.8503588", "text": "public void login() {\n\t\t\r\n\t}", "title": "" }, { "docid": "d08f0130bfcb3f0672ba2a0f33f98ea2", "score": "0.8444148", "text": "private static void login() {\n\t\t\n\t}", "title": "" }, { "doc...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "8a07a225cc814291faf68bc7dba6a1f7", "score": "0.0", "text": "@Override\r\n\tpublic void onResume() {\n\t\tsuper.onResume();\r\n\t\tif(!AccountUtils.getAccounts(getActivity())){\r\n\t\t\tstartActivity(new Intent(getActivity(), Login.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_...
[ { "docid": "74a4209c94e08d9f5eb0b60e580f5e04", "score": "0.68867725", "text": "@Override\r\n\tpublic void comit() {\n\t\t\r\n\t}", "title": "" }, { "docid": "b645eacb329adc01490ab5013a6c4f7f", "score": "0.67295986", "text": "@Override\n\t\t\tpublic void perfom() {\n\n\t\t\t}", "t...
78f9c1dd095f5b3137013b8d9b298258
Returns the string representation of the totalCurrency list. The presentation has a specific format. Elements are separated by '\n' (new line).
[ { "docid": "79e767f7cc39509e1315d9d790f8c361", "score": "0.0", "text": "public String TagListToString() {\n\t\tString out = \"\";\n\t\tif (tags.size() != 0) {\n\t\t\tout += tags.get(0).toString();\n\n\t\t\tfor (int i = 1; i < tags.size(); i++) {\n\t\t\t\tout += \"\\n\" + tags.get(i).toString();\n\t\t\t}...
[ { "docid": "713fda79b8d8afa1ca68052553b87ea0", "score": "0.7481737", "text": "public String currencySummary() {\n\t\tArrayList<Currency> currencyList = new ArrayList<Currency>();\n\t\tfor (int i = 0; i < getItems().size(); i++) {\n\t\t\tint load = 0;\n\t\t\tfor (int j = 0; j < currencyList.size(); j++) ...
4d058345af6ff470562d460b0ddbdca4
Called repeatedly when this Command is scheduled to run
[ { "docid": "14e836a398838cbe2a0b1444ecb9cd70", "score": "0.0", "text": "protected void execute() {\n \t\n }", "title": "" } ]
[ { "docid": "f14851cbfad06077f2535249666740b6", "score": "0.71438706", "text": "@Override\n public void robotPeriodic() {\n CommandScheduler.getInstance().run();\n }", "title": "" }, { "docid": "2472b6b53e8892b700f4664befdfd5bd", "score": "0.71233726", "text": "@Override\n publi...
e9d00c2fac6a7da2c0f01dd0895e07c3
Append an element to the CatchClause list.
[ { "docid": "d5d0a681a742d249918d26c4090509b3", "score": "0.6684364", "text": "public void addCatchClause(CatchClause node) {\n List<CatchClause> list = (parent == null || state == null) ? getCatchClauseListNoTransform() : getCatchClauseList();\n list.addChild(node);\n }", "title": "" } ]
[ { "docid": "8f962e62fae48f369c69f7a08ba9291d", "score": "0.6364941", "text": "public void addElement(Expression element){\n\t\telements.add(element);\n\t}", "title": "" }, { "docid": "c5d9cb3432f0ce73f3a9ae5152f85396", "score": "0.6123237", "text": "public void add(Statement element)...
6e230a8d64aa764716def8e60faf1dad
Constructor for the SerialComm class
[ { "docid": "19647c79ee3982e68cc666a3ed80578f", "score": "0.722866", "text": "public SerialComm(String name) throws SerialPortException {\n\t\tport = new SerialPort(name);\t\t\n\t\tport.openPort();\n\t\tport.setParams(SerialPort.BAUDRATE_9600,\n\t\t\tSerialPort.DATABITS_8,\n\t\t\tSerialPort.STOPBITS_1,\n...
[ { "docid": "455172da815c4ff64d67d8cd57f77850", "score": "0.692416", "text": "public Serial() throws IOException {\n\t\tthis(\"/dev/master\", 9600);\n\t}", "title": "" }, { "docid": "2c2a218ef6a1b8d439d6c6dba409485d", "score": "0.6870521", "text": "public DevComm(Context context, Spin...
7eb6b1c1f545e641e9a60667b6e96282
Method accepts encryption key and initialization vector, source and destination file and does the encrypting or decrypting.
[ { "docid": "cf044d696384cbf530994ffb8f33fb4c", "score": "0.6422824", "text": "private static void encryptFile(Boolean encrypt, String keyText, String ivText, String file1, String file2) {\n\t\tSecretKeySpec keySpec = new SecretKeySpec(Util.hexToByte(keyText), \"AES\");\n\t\tAlgorithmParameterSpec paramS...
[ { "docid": "41bddd0499a1b0831f35009d282ad683", "score": "0.6896781", "text": "private static void encrypt() throws Exception\n\t{\n\t\t// Creates the master key based on the existing salts\n\t\tSecretKey masterKey = generateMasterKey();\n\n\t\t// Creates file streams for the unencrypted input file and e...
e556c95d3d2bc8e1db187b421ef92f28
Returns the number of virtual channels in used.
[ { "docid": "07fb7d705a446e29e8b737cb2202f85e", "score": "0.0", "text": "public static int InUsed(){\n return _instances;\n }", "title": "" } ]
[ { "docid": "cff70522ee41dfbdebdf93ff88b3262b", "score": "0.75735843", "text": "int getVirtualDeviceCount();", "title": "" }, { "docid": "2074a3daa01bc66407ffb7fef9c50030", "score": "0.7326697", "text": "int getChannelsCount();", "title": "" }, { "docid": "031cf669165425ce...
ef7633ad9ecb007a8e1ba520d5499682
Sets the path to the ObjectiveC/C header.
[ { "docid": "30a84c486b6f39277323a4e09ddee8d0", "score": "0.66222656", "text": "public void setHeaderPath(String headerPath) {\n this.headerPath = headerPath;\n }", "title": "" } ]
[ { "docid": "ff2dd3ba732bb0a58f112bf49a61ea5c", "score": "0.5865722", "text": "public String getHeaderPath() {\n return headerPath;\n }", "title": "" }, { "docid": "746e03b9cf69c1036cb460e6b8a6565b", "score": "0.5842517", "text": "public void setFileHeader() {\n try {...
89a3abe0150ecd80bf22f8442aebb5bd
More onstructor setup. This organizes the template file.
[ { "docid": "43c5ce68a18e7e2180098c966bbf9d90", "score": "0.0", "text": "private void setup(List<String>rawLines) {\n\t\ttext = new ArrayList<String>();\n\t\tactions = new ArrayList<Map.Entry<String, List<String>>>();\n\t\tSet<String>mnemonicSet = new HashSet<String>();\n\t\tList<String> current = text;\...
[ { "docid": "bc3e009032ccf381c67a799ebf4287d8", "score": "0.6923427", "text": "@Override\n\t protected void setupContext() {\n\t if(!getProperties().containsKey(\"ejb3\")) {\n\t getProperties().put(\"ejb3\", \"false\");\n\t }\n\t if(!getProperties().containsKey(\"jdk5\"...
1bc13044fa66ea2de0b8fefcee264d22
Test correctly calculated direction.
[ { "docid": "f393c95024b506b26be5fd29dcf3984f", "score": "0.67533517", "text": "@Test\n public void testPositiveDirection() {\n assertTrue(vec1.positiveDirection(p1, p2));\n assertFalse(vec1.positiveDirection(p2, p1));\n }", "title": "" } ]
[ { "docid": "c1047aeb9ecc4dc074366540a0138ae1", "score": "0.7325572", "text": "private double checkDirection()\n {\n double correction, angle, gain = .10;\n\n angle = getAngle();\n\n if (angle == 0)\n correction = 0; // no adjustment.\n else\n ...
94e09eb50f2822df76c8f0e261260e33
This method returns the contents of the specified template file.
[ { "docid": "868eb56dd820ae9b731f517bbf65d004", "score": "0.60938454", "text": "private String getTemplate(String scope, String fileName, String suffix) throws ScriptBrokerException {\n try {\n TemplateHelper template = new TemplateHelper(new File(this.templateDir,\n ...
[ { "docid": "357004d78b029da4e9c7b995ef004f55", "score": "0.7877129", "text": "java.lang.String getTemplateFile();", "title": "" }, { "docid": "8aedd08f912868f959a553ce042d5e27", "score": "0.763289", "text": "private static String getTemplateFileContents(String template_file) throws I...
bb8a8ad1bdd9f3e145b10f85db4cf83b
Constructs a Compra object with null values.
[ { "docid": "0eb0fa5bb9d13510f02388aab410fcdc", "score": "0.69261485", "text": "public Compra() {\r\n\t\tsuper();\r\n\t}", "title": "" } ]
[ { "docid": "015cc6f7d85a4910493674e7ae5e57ab", "score": "0.7025399", "text": "public M cstCompensateNull(){if(this.get(\"cstCompensateNot\")==null)this.put(\"cstCompensateNot\", \"\");this.put(\"cstCompensate\", null);return this;}", "title": "" }, { "docid": "1d1b9b772205a0b6783ab28bea6b6d2...
7ec29d2268276350351e43808f148e37
Sets the flag that enables/disables dragging of links
[ { "docid": "45f83d911e35bc8bd51effc9804e2197", "score": "0.0", "text": "public void setEnabled(boolean bEnable) {\n\t\tif (bEnable)\n\t\t\tsetState(INITIAL_STATE);\n\t\telse\n\t\t\tsetState(DISABLED_STATE);\n\t}", "title": "" } ]
[ { "docid": "a8a6b61d88e55ca563ab232892cd87d8", "score": "0.7376861", "text": "public void setDragEnabled(boolean enable);", "title": "" }, { "docid": "f91a8f482dfae5e499e200a8fa01bd49", "score": "0.67530495", "text": "void setHyperlinkEnabled(boolean enabled);", "title": "" }, ...
c44ead4ea65bd402eae2c99b58bd94d1
This method describes the actions performed when the Previous button is pressed.
[ { "docid": "9893d88a8159d1046cdf62f617146df2", "score": "0.0", "text": "private void playPreviousSong() {\n if (imgBtnPlay.getVisibility() == View.VISIBLE) {\n imgBtnPlay.setVisibility(View.INVISIBLE);\n imgBtnPause.setVisibility(View.VISIBLE);\n }\n if (isRepe...
[ { "docid": "090a5610933647ec5672db326e105a20", "score": "0.8438681", "text": "public void previousButtonAction();", "title": "" }, { "docid": "e506513b90d4f03989b243b7b651c459", "score": "0.79590803", "text": "@Override\n public void clickPrevious() {\n }", "title": "" },...
24853bb10e2c5986a85ee681e06f131e
GIbt die einzelnen Portdes Kind
[ { "docid": "b92e2256c137cb1d4f5a8d5172bbffd6", "score": "0.0", "text": "public int getChildPort(String childname){\n\t\treturn this.mbImpl.connectToChild(childname).port;\n\t}", "title": "" } ]
[ { "docid": "7319bec6942e9b0efeef2dc76c6c2160", "score": "0.61446327", "text": "Kind kind();", "title": "" }, { "docid": "7319bec6942e9b0efeef2dc76c6c2160", "score": "0.61446327", "text": "Kind kind();", "title": "" }, { "docid": "df101e479fb5875cee9608d932f0e80f", "sc...
ce5108dca6adb67a5c1890d874079dce
If this property is true, use DestributedCache mechanism to broadcast some stuff around. May improve efficiency. Default is false.
[ { "docid": "766caed3a222644968331803c9028fbf", "score": "0.0", "text": "public void setBroadcast(boolean broadcast) {\n this.broadcast = broadcast;\n }", "title": "" } ]
[ { "docid": "293aa0de220a86e00e7e36aad72467a0", "score": "0.68526757", "text": "public boolean isCache() {\n return true;\n }", "title": "" }, { "docid": "a45259e1b1ba014c6223bc36d6790412", "score": "0.669783", "text": "protected boolean shouldUseCache() {\n retu...
20484b68f7e89b5d28256e6f78111c65
Gets the attribute value for Renwal_Mnths using the alias name RenwalMnths.
[ { "docid": "3ac8be01026ac4a1f65954689381ee93", "score": "0.70598537", "text": "public Integer getRenwalMnths() {\n return (Integer) getAttributeInternal(RENWALMNTHS);\n }", "title": "" } ]
[ { "docid": "d32c25ef5dd4f0db09e5bddeffc6c8c8", "score": "0.5196838", "text": "public void setRenwalMnths(Integer value) {\n setAttributeInternal(RENWALMNTHS, value);\n }", "title": "" }, { "docid": "40b27ffb299a058fbf75a5caa304348b", "score": "0.51691806", "text": "public j...