query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
0e1cb939cc03dc58e849c9b67f1b03ba
Composes an AffineTransform object with the Transform in this Graphics2D according to the rule lastspecifiedfirstapplied. If the current Transform is Cx, the result of composition with Tx is a new Transform Cx'. Cx' becomes the current Transform for this Graphics2D. Transforming a point p by the updated Transform Cx' i...
[ { "docid": "5d5c3a30762e7eeaf165ec84c614eaab", "score": "0.61300665", "text": "public void transform(AffineTransform Tx) {\n gc.transform(Tx);\n }", "title": "" } ]
[ { "docid": "f3823cbf5761eebfd8349c5c26580a03", "score": "0.61592984", "text": "public void transform(AffineTransform Tx) {\n transform.concatenate(Tx);\n transformStack.add(TransformStackElement.createGeneralTransformElement(Tx));\n }", "title": "" }, { "docid": "6c67b2a1331cd0071a1d3...
661566629f13cb4debc89e092f40a578
!level4heading !level3heading !level2heading section
[ { "docid": "23a31dc78f7e318ea32f166c83c51122", "score": "0.5588469", "text": "private static boolean level_4_section_2_0(PsiBuilder b, int l) {\n if (!recursion_guard_(b, l, \"level_4_section_2_0\")) return false;\n boolean r;\n Marker m = enter_section_(b);\n r = level_4_section_2_0_0(b, l ...
[ { "docid": "f8c6ff770723f067171729bebf0222ef", "score": "0.63484466", "text": "public static boolean level_2_heading(PsiBuilder b, int l) {\n if (!recursion_guard_(b, l, \"level_2_heading\")) return false;\n if (!nextTokenIs(b, equals2)) return false;\n boolean r;\n Marker m = enter_section_...
62b8df5080d58a186e7df8f7b3ac21fd
Converts the array list of characters to the string.
[ { "docid": "c56834e1d8b85e16b7a4f9820b470c24", "score": "0.7612781", "text": "private static String charArrayListToString(ArrayList<Character> list) {\r\n StringBuilder builder = new StringBuilder(list.size());\r\n for (Character ch : list) {\r\n builder.append(ch);\r\n }...
[ { "docid": "b9d6478f02fd4592136071188f9dc498", "score": "0.7741735", "text": "private String convertToString(ArrayList<Character> input){\n String subResult = \"\";\n for(Character c : input){\n subResult = subResult + c;\n } \n return subResult;\n }", "ti...
8c2a99a8dcd38bf6d3939c58697a1b8d
Set the x, y and z components to match the supplied vector.
[ { "docid": "df2c45ea8a322c3ebd95c97d496ac703", "score": "0.69407505", "text": "public abstract Vector3dc set(IVector3f v);", "title": "" } ]
[ { "docid": "825f450afbf5b554bde8444ffc16dda3", "score": "0.7802131", "text": "public void set(Vector3D v) {\r\n x = v.getX();\r\n y = v.getY();\r\n z = v.getZ();\r\n }", "title": "" }, { "docid": "ed0b0f153da83ae08feb190136ea5e5c", "score": "0.76889783", "text...
8ef0772ee5ca507ab02914d35de721fd
The method returns the expansion weight of the term.
[ { "docid": "f95f8ef34a7b0d17c80522562f0f9d33", "score": "0.7818125", "text": "public float getWeightExpansion() {\r\n\t\t\treturn this.weightExpansion;\r\n\t\t}", "title": "" } ]
[ { "docid": "105a42d49dda00bb458b7a2c2c8cb34d", "score": "0.8523449", "text": "public float getExpansionWeight(String term) {\r\n\t\treturn this.getExpansionWeight(term);\r\n\t}", "title": "" }, { "docid": "f73b9829ef12905878ef6861032b011c", "score": "0.7714368", "text": "public float...
cdb3da4715a6f29b49ad3b5db83e7d90
Method generated by Jigloo to initialize GUI components
[ { "docid": "352d45e938df741e3f72671a611e5618", "score": "0.0", "text": "private void initGUI() {\n\t\ttry {\n\t\t\tthis.setPreferredSize(new java.awt.Dimension(800, 500));\n\t\t\tthis.setLayout(null);\n\t\t\t{\n\t\t\t\tlblItemExit = new JLabel();\n\t\t\t\tthis.add(lblItemExit);\n\t\t\t\tlblItemExit.setT...
[ { "docid": "e14eafcfe6efbdade77f1198bf0e6dc1", "score": "0.8331507", "text": "protected abstract void initComponents();", "title": "" }, { "docid": "7991aba13ffe1285786da5382ca7a24f", "score": "0.8240265", "text": "private void initComponents() {\n\n }", "title": "" }, { ...
3d9cac1a8e7083d214d01bbacb37c228
Creates a String Potentiometer, the minimum and maximum voltages, the string's length, and reverses the range of the voltages if specified.
[ { "docid": "60762079fa93f3c29f4754265aee699d", "score": "0.72199845", "text": "public StringPot(AnalogInput analogInput, double minVoltage, double maxVoltage,\n double stringLength, boolean reverseRange) {\n this.analogInput = analogInput;\n this.minVoltage = minVoltage;\n ...
[ { "docid": "43bb0b1caaa016b9260bee16fcf27277", "score": "0.6599919", "text": "public StringPot(int channel, double minVoltage, double maxVoltage, double stringLength,\n boolean reverseRange) {\n this(new AnalogInput(channel), minVoltage, maxVoltage, stringLength, reverseRange);\n }"...
866eb9f93d5e646f5c04ab7c0db53b80
Loads and convert the json data to markers on the map. It will read from a file and should be runned in a background thread.
[ { "docid": "b7df20b54c44f9f2536d760b5da8f24a", "score": "0.6589785", "text": "private void loadMarksFromJson() {\n InputStream is = null;\n try {\n is = getAssets().open(ASSETS_CHARGEPOINTS_JSON);\n Gson gson = new Gson();\n InputStreamReader reader = new I...
[ { "docid": "cc9c0fa4ce70b09a092a0e6043ccc5fa", "score": "0.7018028", "text": "public void updateMap() {\n downloadMap();\n try {\n GeoJSONObject geoJSON = GeoJSON.parse(readFromFile());\n }\n catch (JSONException e) {\n e.printStackTrace();\n }\n ...
6713601720a8a022e2ee03ab0880fd54
optional string code_msg = 2;
[ { "docid": "7df6b1208c257f237e9ed9c5162d8e2e", "score": "0.0", "text": "public Builder setCodeMsgBytes(\n com.google.protobuf.ByteString value) {\n if (value == null) {\n throw new NullPointerException();\n }\n bitField0_ |= 0x00000002;\n codeMsg_ = value;\n onChanged(...
[ { "docid": "e9957990805c8442b1e971a74e62047a", "score": "0.80521786", "text": "java.lang.String getCodeMsg();", "title": "" }, { "docid": "d519af2f2622f44735e4457a000713c7", "score": "0.7347543", "text": "private Code(int code, String message) {\r\n this.code = code;\r\n ...
6c344c91deb0c3d59c577e0c59843a0a
Update effective screen width based on current orientation.
[ { "docid": "2abc490043a83b55a3df3501b0e1ad56", "score": "0.0", "text": "public void updateResources() {\n if (mLayout == null) {\n return;\n }\n Resources res = mLayout.getContext().getResources();\n mStackOffsetPx = res.getDimensionPixelSize(R.dimen.bubble_stack_o...
[ { "docid": "d091046a61e14c6817b24b784b9067ec", "score": "0.68986285", "text": "public void setScreenWidth(int width){\n screenWidth = width;\n }", "title": "" }, { "docid": "aae4adc913d9e499de38405156622942", "score": "0.6734207", "text": "@Override\n\tprotected void onResu...
bc58a7544743912962aa3618813616d9
Coordinates building a LoadPlan that defines just a single root entity return (may have fetches). Typically this includes building load plans for entity loading or cascade loading.
[ { "docid": "1ea0dbdc167314da3e28d428811d50ca", "score": "0.5795812", "text": "public static LoadPlan buildRootEntityLoadPlan(\n \t\t\tLoadPlanBuildingAssociationVisitationStrategy strategy,\n \t\t\tEntityPersister persister) {\n \t\tMetamodelGraphWalker.visitEntity( strategy, persister );\n \t\treturn s...
[ { "docid": "ea3b4acfd94677de0413e7140de0c559", "score": "0.65789294", "text": "public LoadPlan buildLoadPlan();", "title": "" }, { "docid": "2481848e85f84edac41bfe273d716dbd", "score": "0.59905463", "text": "@Test\n \tpublic void testBasicFetchLoadPlanBuilding() {\n \t\tEntityManager...
582f3a3478c4e7891e12b53d6d1dc52b
Remove binding, player, recorder and handlers before destroying the view because fragment can outlive their view
[ { "docid": "89d668cdafe9d4531fce8567307a6f6c", "score": "0.8153767", "text": "@Override\n public void onDestroyView() {\n super.onDestroyView();\n fragmentNoteEditorBinding = null;\n\n if (player != null) {\n if (player.isPlaying())\n player.stop();\n ...
[ { "docid": "432d94024f5ac2b3d7bb6e0d12ebc039", "score": "0.7883901", "text": "@Override public void onDestroyView() {\n super.onDestroyView();\n unbinder.unbind();\n }", "title": "" }, { "docid": "b337d2575dc5e2e23f86c792cf0e93a6", "score": "0.73519313", "text": "@Ov...
e98768d8fa194cd007e197f6f9737fe2
Created by gaganpreet.singh on 2/4/2016.
[ { "docid": "b2430ffa8994e90e921e2d7d7589374c", "score": "0.0", "text": "public interface DialogBoxCallback_UpdateUsername {\r\n\r\n\r\n}", "title": "" } ]
[ { "docid": "663ac6f718361fb243bf093a1c7ded6a", "score": "0.62576747", "text": "@Override\r\n\tprotected void Goukakyuu() {\n\t\t\r\n\t}", "title": "" }, { "docid": "7679fd1b623986eeedb64db808e99029", "score": "0.59218687", "text": "@Override\n\t\t\tpublic void fahre() {\n\t\t\t\t\n\t...
5a234f0baefc0e0f9fedcdf8071d3eb5
.edu.umn.cse.geoproto.GeometryMsg geometry = 2;
[ { "docid": "9581c4d29ae6dc991223c8a805b1b4a5", "score": "0.7512664", "text": "edu.umn.cse.geoproto.GeoProto.GeometryMsgOrBuilder getGeometryOrBuilder();", "title": "" } ]
[ { "docid": "3ca53944de6ae5e1f67d0f619b33b221", "score": "0.7988339", "text": "edu.umn.cse.geoproto.GeoProto.GeometryMsg getGeometry();", "title": "" }, { "docid": "4a5c800266cf778139c2e35e921fb3e8", "score": "0.7368772", "text": "edu.umn.cse.geoproto.GeoProto.GeometryType getType();"...
c9b23500b3d09ad2a58a0023fe618594
Whether data should be processed in the order they are read in, or shuffled randomly. optional bool shuffle = 2 [default = true];
[ { "docid": "de12df296f43c86401ab91a2ca0f1eee", "score": "0.5739939", "text": "public boolean hasShuffle() {\n return ((bitField0_ & 0x00000004) == 0x00000004);\n }", "title": "" } ]
[ { "docid": "40e22a5ee6a47fab0bd3bda8318540f9", "score": "0.6846743", "text": "public void setShuffle(boolean shuffle) {\n this.shuffle = shuffle;\n }", "title": "" }, { "docid": "6f21468cccd4ab1f43718094e65ae08d", "score": "0.6825248", "text": "boolean getShuffle();", "...
305941e33959a74fb1bd8c02dae1e195
stores how many days we should wait before issuing unbondings uint64 unbonding_frequency = 14;
[ { "docid": "a897d9b608d5b9921b52d65a42b1a4a5", "score": "0.6285251", "text": "@java.lang.Override\n public long getUnbondingFrequency() {\n return unbondingFrequency_;\n }", "title": "" } ]
[ { "docid": "23ad004c6b54c83f7a9a2bdc57d08c71", "score": "0.6261664", "text": "long getUnbondingFrequency();", "title": "" }, { "docid": "43be9e0983e5d0d5142cfd141225e7f4", "score": "0.6238956", "text": "@java.lang.Override\n public long getUnbondingFrequency() {\n return ...
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": "0d5345adbd45926792ae16f55f24d5f6", "score": "0.0", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n int id = item.getItemId();\n\n if (id == R.id.action_search) {\n toggleConfigDropdown(1);\n return true;\n } else if(i...
[ { "docid": "d771bdd1ab23e43342c528d79498f394", "score": "0.7726656", "text": "@Override\n\tpublic boolean onOptionsItemSelected(MenuItem item) {\n\t switch (item.getItemId()) {\n\t case android.R.id.home:\n\t // app icon in action bar clicked; go home\n\t Intent intent = ...
a3bc9ddcf941229ccb553655bdf10f98
/ Interpret file accepts Scanner filescanner and PrintStream output, no returns for each line pair in the file of the file scanner, method stores the first line as the name and the second as the answers string. Calls getpercentages method with the answers string to get the percent of b reponses Calls getType with the b...
[ { "docid": "fb5171910288ea2b4a848f6bf80d7d55", "score": "0.7575232", "text": "public static void interpretFile(Scanner fileScanner, PrintStream output) {\n while(fileScanner.hasNextLine()) {\n String name = fileScanner.nextLine();\n String answers = fileScanner.nextLine().to...
[ { "docid": "e00d19c46ad420e23e7129d7a7dcde44", "score": "0.6610544", "text": "public static void test(Scanner input,PrintStream output){\r\n while (input.hasNextLine()){\r\n String name = input.nextLine();\r\n output.print(name +\":\");\r\n String answer = input.nextLine();\...
f9cf02be76493b57e6f43e30cca4fa92
Load the script and keep the SHA value
[ { "docid": "b7fe41b8ca1d54299d15824d04fdfbfa", "score": "0.7016625", "text": "private void loadScript() {\n Jedis conn = pool.getResource();\n\n sha = conn.scriptLoad(code);\n\n conn.close();\n }", "title": "" } ]
[ { "docid": "fcce7fadbefdb848f4dea2f7df015fae", "score": "0.550082", "text": "java.lang.String getSha();", "title": "" }, { "docid": "fcce7fadbefdb848f4dea2f7df015fae", "score": "0.550082", "text": "java.lang.String getSha();", "title": "" }, { "docid": "b8c2996d43d7d2770b...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "78c6a938676ac4198633dc23e455194d", "score": "0.0", "text": "public static String m812a(InputStream inputStream) throws IOException {\n InputStreamReader inputStreamReader = new InputStreamReader(inputStream);\n char[] cArr = new char[1024];\n StringWriter stringWriter = ...
[ { "docid": "420b2bd94bbbbbfe7d1f41efac9498b9", "score": "0.6414247", "text": "interface C0507b {\n /* renamed from: a */\n void mo8211a();\n }", "title": "" }, { "docid": "dfe5343834d94020e7b0a2d1c2878037", "score": "0.63251686", "text": "interface ak {\n /* renam...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "dbdeb3128457fe0ebcdbc9867b7e554b", "score": "0.0", "text": "@Override\n\tpublic void deleteAccounts(UserDataBase ourBase, int accountsNumberSerial) {\n\t\tConnection conn = ConnectionFactory.getInstance().getConnection();\n\t String sql = \"DELETE FROM ACCOUNTS WHERE ACCOUNT_NUMBER = ?\";...
[ { "docid": "f4bccec648e6eb25ae6f4d7165ffc5a1", "score": "0.7037216", "text": "@Override\n\t\t\tpublic void Goruntule() {\n\t\t\t\t\n\t\t\t}", "title": "" }, { "docid": "27bc40cf2c5e26e0bf8b70807e0bcaed", "score": "0.68683225", "text": "@Override\r\n\tpublic void caminar() {\n\t\t\r\n...
fc7ad4c4e2fc0fb16de306b53d81fd2e
/ / / / / / / / / / / / / / /
[ { "docid": "d0defb06d675aa40761250246b2a67c9", "score": "0.0", "text": "static MessageDigest getDigest(String algorithm) {\n/* */ try {\n/* 87 */ return MessageDigest.getInstance(algorithm);\n/* 88 */ } catch (NoSuchAlgorithmException e) {\n/* 89 */ throw new RuntimeException(...
[ { "docid": "6a9ca1922dd81f18ab022cad06247e05", "score": "0.56346667", "text": "int getSideLength() ;", "title": "" }, { "docid": "564c4c725d06dc4fbbd8caf163f959c3", "score": "0.5461297", "text": "private int parent(int i){return (i-1)/2;}", "title": "" }, { "docid": "3da...
b105b24a6109085094999ee1e10f4b2b
string str = 1;
[ { "docid": "169815bc403a4048fcf23649a79ab0af", "score": "0.0", "text": "com.google.protobuf.ByteString\n getStrBytes();", "title": "" } ]
[ { "docid": "59d7c1d54bb3c8fa7fc3bcb0ab0bab42", "score": "0.7040907", "text": "void m16315a(String str);", "title": "" }, { "docid": "d12eafacc57449037681083e04251836", "score": "0.7026016", "text": "void mo57856a(String str);", "title": "" }, { "docid": "6408fc2a040334ccd...
8c609893103c132ca02c990f396f07d6
Constructs a new emxProjectSpace JPO object.
[ { "docid": "c7f6db77ecbba1f021a12f64c25cddb5", "score": "0.59009624", "text": "public emxProjectSpace_mxJPO (String id)\r\n throws Exception\r\n {\r\n // Call the super constructor\r\n super(id);\r\n }", "title": "" } ]
[ { "docid": "b30d52778760be4be4a1642db14a9c47", "score": "0.59705484", "text": "private ProjectVO createProjectVO() {\n ProjectVO proj = new ProjectVO();\n proj.projectId = projectId;\n proj.projectName = projectName;\n proj.managerId = managerId;\n proj.startDate = sta...
f76eb1e36db10be318b86e4064ed05df
Set the triggerDateTime flag
[ { "docid": "801aee8cfc06d5872f5c0ffff265f013", "score": "0.8833907", "text": "public void setTriggerDateTime(final boolean val) {\n triggerDateTime = val;\n }", "title": "" } ]
[ { "docid": "dc624f96a060c9c85b4d36aa6198007a", "score": "0.6992956", "text": "@IcalProperties({\n @IcalProperty(pindex = PropertyInfoIndex.TRIGGER_DATE_TIME,\n jname = \"triggerDateTime\",\n eventProperty = true,\n todoProperty = true,\n ...
5a660110874a63b1461fd32f29f02b5e
Created by wangbin on 2015/8/10.
[ { "docid": "b03a92fabcce665795158386358b9047", "score": "0.0", "text": "public interface BusinessDao extends JpaRepository<Business, Long> {\r\n}", "title": "" } ]
[ { "docid": "ea8460c7314de45803a19bf7c984d4bf", "score": "0.6243176", "text": "@Override\n public void perish() {\n \n }", "title": "" }, { "docid": "1260bf70decb91faff8466bae6765ba2", "score": "0.61828226", "text": "private stendhal() {\n\t}", "title": "" }, { ...
89e4769e5ded8e6214e9bb76d5706bc0
Retourne les grilles du jeu.
[ { "docid": "5334e5ec873e8b2ca3ecbe720c917159", "score": "0.7286612", "text": "public Grille[] getMesGrilles()\n {\n return this.mesGrilles;\n }", "title": "" } ]
[ { "docid": "b143dc8d8acfe6ac3c6b6cca8a23425b", "score": "0.6946056", "text": "public List<String> getGrupos() {\n\t\t\n\t\tArrayList<String> grupos = new ArrayList<String>();\n\t\tgrupos.add(\"Administración\");\n\t\tgrupos.add(\"TI\");\n\t\tgrupos.add(\"E&P\");\n\t\tgrupos.add(\"ExOdea\");\n\t\tgrupos....
ea1b8f1745151b2f46a0fe4804cc3ceb
call api default param valuew is 10
[ { "docid": "2da5efa6c6e117304d9e5cec803159ba", "score": "0.0", "text": "public Observable<MatrimonialModel> getObservable(){\n return RetrofitInstance.getRetrofit().create(ApiInterfaces.class)\n .getMatrimonialMatches(\"10\")\n .subscribeOn(Schedulers.io())\n ...
[ { "docid": "5f51e11fd452541e7985a04c2d046d20", "score": "0.5569955", "text": "public GetIntegerAction(String paramString, int paramInt) {\n/* 90 */ this.theProp = paramString;\n/* 91 */ this.defaultVal = paramInt;\n/* 92 */ this.defaultSet = true;\n/* */ }", "title": "" }, {...
2b8e749ed77b87b0a414e16dbede4f6b
Returns the builder object of extension.
[ { "docid": "927ac84caa5ba38e144320559d58e7a8", "score": "0.0", "text": "LinkBuilder extension(List<Extension> extension);", "title": "" } ]
[ { "docid": "7692d9d68c0ca2bb0004f6294ce630f8", "score": "0.820299", "text": "public com.google.protobuf2.Any.Builder getExtensionBuilder() {\n \n onChanged();\n return getExtensionFieldBuilder().getBuilder();\n }", "title": "" }, { "docid": "67ad2eb2b20c3944fd27e071...
2f0a7375a2f5dc5e5fd5ab008dc67ba1
optional string i_result_yn = 28;
[ { "docid": "a2f0fe71a5760c72eaa78d23b6a9342e", "score": "0.72822696", "text": "java.lang.String getIResultYn();", "title": "" } ]
[ { "docid": "f29127329ad82ec9aa5099e02d886f34", "score": "0.67616826", "text": "java.lang.String getResultYn();", "title": "" }, { "docid": "f29127329ad82ec9aa5099e02d886f34", "score": "0.67616826", "text": "java.lang.String getResultYn();", "title": "" }, { "docid": "f291...
2d89015b5a3802b9e6d62a908a173d1e
4 casos de prueba
[ { "docid": "3e5ef287b74e485a22110b6b1e7a7230", "score": "0.0", "text": "@Test\n public void testSuma() {\n assertEquals(\"Suma ( 2, 3) debe ser 5\", 5, Aritmetica.suma( 2, 3));\n assertEquals(\"Suma (-2, 2) debe ser 0\", 0, Aritmetica.suma(-2, 2));\n assertEquals(\"Suma ( 0,-...
[ { "docid": "d2d2e9a347385cc13989c6ddbe500fed", "score": "0.5885562", "text": "public static void main(String[] args) {\n\t\t\n\t\tHashMap<Integer, ArrayList<String>> notas = saveNotas();\n\t\tHashMap<String, ArrayList<String>> acordes = new HashMap<>();\n\t\tacordes.putAll(crearAcordesMayores(notas));\n...
bea7238cf56af047e7cef6b9898bf61b
this decrypt method knows all the secret parameters: the key & the code
[ { "docid": "68c39237c94bdd5b79df3203deece60f", "score": "0.6019339", "text": "public static String decrypt(String message_encrypted, int key, String code){\n validate_code(code);\n validate_key(key);\n\n return decrypt_string(message_encrypted, key, code);\n }", "title": "" ...
[ { "docid": "c357d7c52bee9cb6216de61a05e1a302", "score": "0.6788765", "text": "byte[] decrypt(Parameters parameters, KeyPair keyPair, byte[] data) throws CryptographyException;", "title": "" }, { "docid": "05458ef5d80dd093908740a9565cf082", "score": "0.6640038", "text": "void decrypt(...
45c9fcd1bbf94ae5e53383c470e71a0f
Here is the key method to apply the animation
[ { "docid": "03df99527f9a3f35141ad072d416a2f7", "score": "0.0", "text": "private void setAnimation(View viewToAnimate, int position)\n {\n // If the bound view wasn't previously displayed on screen, it's animated\n if (position > lastPosition)\n {\n Animation animation ...
[ { "docid": "6bc8d39c6c05ed3c219a7df3e516f5c9", "score": "0.7839627", "text": "@Override\n\tpublic void animate() {\n\t\t\n\t}", "title": "" }, { "docid": "2d95279c2563cf90339a95187cece030", "score": "0.7555682", "text": "public void applyAnimation() {\n this.mIndicatorControll...
9f6bc5e543365d8a309ee07d854a2b8e
Build Kafka configuration object
[ { "docid": "a7fefdb36b79db98eb9e77fd99a63a90", "score": "0.7327178", "text": "private KafkaConfig buildKafkaConfig(String zookeeperQuorum) throws IOException {\n\t\tProperties props = new Properties();\n\t\tprops.put(AmbethKafkaConfiguration.VISIBLE_HOST_NAME, LOCALHOST);\n\t\tprops.put(AmbethKafkaConfi...
[ { "docid": "dd868b000277be4ead94e5b142170b5c", "score": "0.7505176", "text": "public abstract ProducerConfig createKafkaProducerConfig();", "title": "" }, { "docid": "a6507d1d52466d8f2b5a1aceb6f530e3", "score": "0.705279", "text": "private Map<String, Object> getKafkaConfiguration() ...
dc5bf57f538c30a8c2be9948756ef94e
construct an empty deque
[ { "docid": "f33a31d78f8abe46f256bafd40cf7a2d", "score": "0.0", "text": "public boolean isEmpty() {\n return 0 == this.size;\n }", "title": "" } ]
[ { "docid": "283e63c2803d36fb803661b9fd1ab08f", "score": "0.79708886", "text": "public Deque() { // construct an empty deque\n this.first = null;\n this.last = null;\n N = 0;\n }", "title": "" }, { "docid": "647ec4863502fbb265eda0f5d63e121f", ...
e5883f76935ee3839ad25c315addc34f
Returns a datetimeId prior to the datetimeId argument where an observation is available or null if one can not be found
[ { "docid": "f56547252e447d3660d4b6bdfbc67117", "score": "0.6611604", "text": "public abstract Integer getLastNonmissingDatetimeIdBefore(int datetimeId, Integer stationId)\r\n throws DataAccessException;", "title": "" } ]
[ { "docid": "83a06acc254abfa04c10facea4d98962", "score": "0.64482665", "text": "public abstract Integer getLastNonmissingCalculatedDatetimeIdBefore(int datetimeId, int stationId)\r\n throws DataAccessException;", "title": "" }, { "docid": "ea1da518006b27ebfd6fe857c2b4ed3e", "sc...
8f23f6e3219276d773460700606fd937
/ Compute the "height" of a tree the number of nodes along the longest path from the root node down to the farthest leaf node.
[ { "docid": "73fce24c9c2183d31e0aefd9f2c71938", "score": "0.71581405", "text": "public int height() {\r\n\t\tNode current = root;\r\n\t\treturn calcHeight(current);\r\n\t}", "title": "" } ]
[ { "docid": "2cf58d98f31a4e0d3dfb253a842260ca", "score": "0.81959385", "text": "public int height(){\n\t\tFCNSTreeNode node = root;\r\n if(root == null) return -1;\r\n \r\n if(node == null) return 0;\r\n \r\n // comparing the maximum height of the tree's left branches against the...
e5e22581f88de7f1db3813a5fbd77626
.cosmos.base.v1beta1.Coin payment = 3 [(.gogoproto.nullable) = false];
[ { "docid": "63bcce5688bd3968adf352bade48dcf1", "score": "0.0", "text": "public Builder clearPayment() {\n if (paymentBuilder_ == null) {\n payment_ = null;\n onChanged();\n } else {\n payment_ = null;\n paymentBuilder_ = null;\n }\n\n retur...
[ { "docid": "d9d21bd505ce6166ced71fe8891f04e0", "score": "0.83979404", "text": "cosmos.base.v1beta1.CoinOuterClass.CoinOrBuilder getPaymentOrBuilder();", "title": "" }, { "docid": "96645a71bdb0b5be43e8294914222798", "score": "0.81171983", "text": "cosmos.base.v1beta1.CoinOuterClass.Co...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "3c6104198336efd408d53e0ef4420356", "score": "0.0", "text": "@Override\n public void onItemSelected(AdapterView<?> arg0, View arg1,\n int arg2, long arg3) {\n if (master_data == null) {\n if (arg2 == 5) {\n ...
[ { "docid": "da34ed11fe7c5649b3cd0bdad6dca5df", "score": "0.7115525", "text": "@Override\n\t\tpublic void 비행() {\n\t\t\t\n\t\t}", "title": "" }, { "docid": "99cfe01c5035e9a9ca6dafada0e4a005", "score": "0.673545", "text": "@Override\r\n\tpublic void caminar() {\r\n\t\t// TODO Auto-gen...
56d185dad951c6f7b29cde8d7214c51e
The value of the filter type used to identify the tags to be returned. For example, you can filter so that tags are returned according to Auto Scaling group, the key and value, or whether the new tag will be applied to instances launched after the tag is created (PropagateAtLaunch). Returns a reference to this object s...
[ { "docid": "8f0a94e8850452a981367b194bed16de", "score": "0.60623944", "text": "public DescribeTagsRequest withFilters(Filter... filters) {\n if (getFilters() == null) setFilters(new java.util.ArrayList<Filter>(filters.length));\n for (Filter value : filters) {\n getFilters().add...
[ { "docid": "7eda34ad472e2c2e30e1227185c7de43", "score": "0.57859975", "text": "public DescribeTagsRequest withFilters(java.util.Collection<Filter> filters) {\n if (filters == null) {\n this.filters = null;\n } else {\n com.amazonaws.internal.ListWithAutoConstructFlag<...
8a84ca59abd29bf446f0651e5867c375
Establece la imagen a la celda que corresponde con la opcion seleccionada.
[ { "docid": "a5b54b2620ce4852a828ba34616a6fc3", "score": "0.5396514", "text": "public void actualizar(int valor_numero) {\n\t\tInteger v = valor_numero;\n\t\tif (habilitada) {\n\t\t\tvalor = v;\n\t\t\tentidadGrafica.actualizar(valor); // Actualiza la imagen de la entidad grafica, con el valor (indice)\n\...
[ { "docid": "38686163c4ee0cea97f79a76fb113583", "score": "0.6462939", "text": "@Override\r\n public void mouseClicked(MouseEvent e) {\n if (e.getSource() == vista.imagenL) {\r\n JFileChooser chooser = new JFileChooser();\r\n if (chooser.showOpenDialog(null) == JFileChooser...
43af38faa2fe83ea7cfb65e0f30a1732
Set value of LinkToFeedbackPage
[ { "docid": "44b864119fd111f308900bf75556b5cb", "score": "0.7764107", "text": "public final void setLinkToFeedbackPage(com.mendix.systemwideinterfaces.core.IContext context, java.lang.String linktofeedbackpage)\n\t{\n\t\tgetMendixObject().setValue(context, MemberNames.LinkToFeedbackPage.toString(), linkt...
[ { "docid": "b84d179ce0d264f1d989a4da1913e69a", "score": "0.80054945", "text": "public final void setLinkToFeedbackPage(java.lang.String linktofeedbackpage)\n\t{\n\t\tsetLinkToFeedbackPage(getContext(), linktofeedbackpage);\n\t}", "title": "" }, { "docid": "d4f4c57b7bf978e60734f520a748d7be", ...
9842ab24a07c7f56bdcfeb285282265c
Creates a new search scope with all projects possibly referenced from the given javaElements.
[ { "docid": "388e0795373e0e69e6ad7ff2e3d324ff", "score": "0.7909143", "text": "public static IJavaSearchScope createReferencedScope(IJavaElement[] javaElements, int includeMask) {\n Set<IJavaProject> projects = new HashSet();\n for (int i = 0; i < javaElements.length; i++) {\n pr...
[ { "docid": "6c8eca4c725cd3d637ce1014cf4048bf", "score": "0.83006775", "text": "public static IJavaSearchScope createReferencedScope(IJavaElement[] javaElements) {\n Set<IJavaProject> projects = new HashSet();\n for (int i = 0; i < javaElements.length; i++) {\n projects.add(javaE...
ca9f0f8b7095314070c5bcc53ef8f5d1
Creates new form pplNearby
[ { "docid": "843749b226cffb8d7d04e81d468890b7", "score": "0.5159945", "text": "public pplNearby(String specialid) {\r\n this.specialid=specialid;\r\n initComponents();\r\n this.setLocationRelativeTo(null);\r\n search.setBackground(new Color(0,0,0,0));\r\n leftarrow.setB...
[ { "docid": "37db5a84d4d8859d7da10a7190e2e67a", "score": "0.5910336", "text": "public PositionListForm() {\n\tgetRegionsSelector().setAllNetzones(true);\n\tgetRegionsSelector().setAllRegions(true);\n\tgetRegionsSelector().setAllSuperregions(true);\n sortorder = 5;\n order = 1;\n worker = new com...
dfd46a1ef7cc99cfd7a2da7571f243bd
sistem icindeki kitaplarin booksRecord.csv dosyasina kaydinin yapilmasini saglar.
[ { "docid": "4fed8363441ad02dbd6bfee7b6885be5", "score": "0.6241594", "text": "public static void writeBooksToCsvFile(List<Book> books){\n try {\n FileWriter writer = new FileWriter(BOOKS_RECORD_FILE_NAME);\n writer.append(BOOKS_FILE_HEADER);\n writer.append(NEW_LI...
[ { "docid": "3a5a0dd18ddb278cf0792081d3ec5c47", "score": "0.72381073", "text": "public void bookData(){\n\t\ttry {\n\t\t\tCSVReader cr = new CSVReader(new FileReader(\"/home/sist/csv_data/bestseller.csv\"));\n//\t\t\tList<String[]> lists =cr.readAll();\n\t\t\tList<String[]> lists =cr.readAll();\n\t\t\t//...
ebbd0267b14244c92dadb3d3a6a5fda3
Remove input character in string.
[ { "docid": "fb967be747e6e14e12bf6eb9bcfba252", "score": "0.6765685", "text": "public static String removeChar(String s, char c) {\r\n\t String r = \"\";\r\n\t for (int i = 0; i < s.length(); i++) {\r\n\t if (s.charAt(i) != c)\r\n\t r += s.charAt(i);\r\n\t }\r\n\t return r;\r\n\t ...
[ { "docid": "df402c6796915256f0a00c62e67ab5d1", "score": "0.71613914", "text": "static String removeCharacter(String str, char ch) {\n\n return str.replaceAll(Pattern.quote(String.valueOf(ch)), \"\");\n }", "title": "" }, { "docid": "d9bb475fbb6faf5cff88014f499161e3", "score": "...
a65cf0d4c34abb295b1180ca41807ab6
Adds to the list of pending event event that the server failed to deliver b/c the client is not accessible.
[ { "docid": "fadc57209391f5f8584f6538438dae1b", "score": "0.0", "text": "private void addToPending(Account ac, Message m){\n\t\t\tif(!pendingMessages.containsKey(ac)){\n\t\t\t\tSet<Message> es = new HashSet<Message>();\n\t\t\t\tes.add(m);\n\t\t\t\tpendingMessages.put(ac, es);\n\t\t\t}\n\t\t\telse{\n\t\t\...
[ { "docid": "b2219a8deb4af12cb52640fb275749a1", "score": "0.62165743", "text": "public void failed (Exception e) {\n \n String method = \"InterDomainEventRequest.failed\";\n String transId = this.getTransactionId();\n OSCARSNetLogger netLogger = OSCARSNetLogger.getTlogger();\n ...
3a87ba8c307894774312bed288d43975
Returns true when status is in OK state.
[ { "docid": "5b6be5cdf5d3703eae04673b20e7f369", "score": "0.7625914", "text": "public boolean isOk() {\n return this.state == null || this.state.code == 0;\n }", "title": "" } ]
[ { "docid": "aef66a494aac8bb676bfb7b1d5de4e2d", "score": "0.8611108", "text": "public boolean isStatusOk() {\r\n return STATUS_OK.equals(this.status);\r\n }", "title": "" }, { "docid": "65f9bf1e706cf52093243adf03867ebd", "score": "0.8151481", "text": "public boolean isOK() {...
e0d1283b67cc04a6bbf7a5f1143067b4
/ test Data OrderDA orderDA = new OrderDA(); String id = new String(orderDA.findNewID()); System.out.println(orderDA.findNewID()); Order order = new Order(id,new Tables(9,0,null),null,new Staff("S004",null,"123456",null,null,null,null,null,null,null),new Member("C0000007",null,0,null,null,null,null,null,null,null),"CAR...
[ { "docid": "ab533d36ea195c7f79ca20ef90a704e5", "score": "0.0", "text": "public static void main(String[] args) {\r\n }", "title": "" } ]
[ { "docid": "89ab086f49ca59ef7c976325e229aaf3", "score": "0.6864314", "text": "int insert(OrderDO record);", "title": "" }, { "docid": "f1d0be7b9ea82135abfa063537728a84", "score": "0.6697315", "text": "@Test\n public void testEditOrder() throws Exception {\n DateTimeFormatte...
97435d5df17a755ff9f35cf052ef432f
Creates a new blockingstyle stub that supports unary and streaming output calls on the service
[ { "docid": "5d205380a3bca99f24660fde64079cb5", "score": "0.0", "text": "public static OperatingSystemVersionConstantServiceBlockingStub newBlockingStub(\n io.grpc.Channel channel) {\n return new OperatingSystemVersionConstantServiceBlockingStub(channel);\n }", "title": "" } ]
[ { "docid": "4d464a43011723b64e8ced0656b61003", "score": "0.60563946", "text": "public static BidirectionalStreamingServiceFutureStub newFutureStub(\n io.grpc.Channel channel) {\n return new BidirectionalStreamingServiceFutureStub(channel);\n }", "title": "" }, { "docid": "d48a05df6e...
b9f1bd5cf3f4b0dd6cf995e002950dc6
This method was generated by MyBatis Generator. This method corresponds to the database table t_dishes_daily
[ { "docid": "3c86f74356501de12de696abcb9023bf", "score": "0.6658429", "text": "@Select({\n \"select\",\n \"id, breakfast_food, breakfast_money, lunch_food, lunch_money, dinner_food, dinner_money, \",\n \"dishes_date, create_date, create_by, breakfast_food_id, lunch_food_id, dinner_fo...
[ { "docid": "63fb453c5ece8f7fbadd9a4b8cb3b422", "score": "0.68068975", "text": "@Select({\n \"select\",\n \"id, breakfast_food, breakfast_money, lunch_food, lunch_money, dinner_food, dinner_money, \",\n \"dishes_date, create_date, create_by, breakfast_food_id, lunch_food_id, dinner_f...
06c14dd77ce969fb184d8d3c84560606
End of code for the attribute id from device Device Code for the attribute location from device PhysicalDevice Set the value of the location attribute from device PhysicalDevice. attribute location as String;
[ { "docid": "4fb50e40ceabb30c221d2c60c599c651", "score": "0.5021824", "text": "public MobileStorageMock location(java.lang.String newLocationValue) {\n proxy._updateLocation(newLocationValue);\n return this;\n }", "title": "" } ]
[ { "docid": "af7478fcf474ae680dfd6ce3677871e7", "score": "0.62555707", "text": "public void setDeviceLocation(echosign.api.dto16.DeviceLocation deviceLocation) {\r\n this.deviceLocation = deviceLocation;\r\n }", "title": "" }, { "docid": "c68dbebffdf0bd3ef320f8e10545f996", "scor...
d41be88c527f4b9266bf5630f3922931
Stores the settings in the persistent project storage.
[ { "docid": "b5db0ff15c242aaafd2c78d41ad862c0", "score": "0.6798701", "text": "private void saveSettings() {\n // Serialize the mIncludes map into a compact String. The mIncludedBy map can be\n // inferred from it.\n String encoded = encodeMap(mIncludes);\n\n try {\n ...
[ { "docid": "dd0cd40e2399176bc46cf1d57460f76e", "score": "0.73825675", "text": "private static void persistSettings() {\n\t\ttry {\n\t\t\tBufferedWriter userConf = new BufferedWriter(new FileWriter(\n\t\t\t\t\tconf.getAbsolutePath()));\n\t\t\tproperties.store(userConf, null);\n\t\t\t// flush and close st...
3c9a32c6ea91a03b159f8a2358560567
Returns a test graph with the following nodes and edges: node1 > node2 node2 > "myIdNode2" node3 > node1 node3 > "/" node3 > node2
[ { "docid": "303bea732096f009f2b304a8952e01e1", "score": "0.0", "text": "private List<ConfigIdGeneration> createValidIdGenerations() {\n ConfigIdGeneration idGeneration1 = createIdGenerationWithReference(ID_GENERATION_NAME_1, ID_GENERATION_NAME_2);\n\n ConfigIdGeneration idGeneration2 = cre...
[ { "docid": "c8982414c8d653fc03707eebe74a475f", "score": "0.59202164", "text": "@Test\n\tpublic void testGetNeighborIdsForDNAStrand() {\n\t\tGraphNodeData node_data = new GraphNodeData();\n\t\tnode_data.setNodeId(\"node\");\n\t\tnode_data.setNeighbors(new ArrayList<NeighborData> ());\n\t\tint num_edges =...
3faa9ba3a6a4ef4e9de12ea906b88ba5
Converts alice.txt into string array and returns it
[ { "docid": "3ddcdd20be27b512e7c0e9194354c5b5", "score": "0.71201897", "text": "public static String[] QueryFile() throws IOException\n {\n //create file path for alice.txt\n Path path = Paths.get(\"alice.txt\");\n\n //Get list of lines from text file\n List<String> lines =...
[ { "docid": "c0f58a05b497b31040d54da0d1c71251", "score": "0.7147005", "text": "public static String[] textFiletoArray(String file) throws IOException {\r\n\t\tBufferedReader rdr = new BufferedReader(new FileReader(file));\r\n\t\tVector<String> s = new Vector<String>();\r\n\t\tfor (;;) {\r\n\t\t\tString l...
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": "da3606f26f1cc02f03beef11ac6929bc", "score": "0.7735418", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n int id = item.getItemId();\n switch (item.getItemId()) {\n case android.R.id.home:\n // app icon in action bar clic...
4da4169df3e0a3b94ae2523ad79e6b3b
getDetails method can get all the details of the rent property
[ { "docid": "50523dade88c234b2519a4e570ca9867", "score": "0.7033535", "text": "public String getDetails() {\n\t\tString detail = \"Property ID:\" + \"\\t\\t\" + this.propertyID + \"\\n\" + \"Address:\" + \"\\t\\t\\t\" + this.getStreetNum()\n\t\t\t\t+ \" \" + this.getStreetName() + \" \" + this.getSuburb(...
[ { "docid": "da30f30afe2c49c420374e214647686b", "score": "0.6969478", "text": "@objid (\"d27e968a-f065-4968-ab50-4bad191ceab0\")\n String getDetails();", "title": "" }, { "docid": "74b45b19a511b2edcdfc41ecf8a865b3", "score": "0.68961453", "text": "String getDetails();", "title"...
7e92e20728cbd46fb6e7594597f5e4fd
getLastDayOfPeriodYear Helper Method : get first history date from specific period
[ { "docid": "430031bfd9889b024a92b83418061448", "score": "0.5948203", "text": "public Timestamp getFirstDayOfPeriodHistory(int period_id,\r\n\t\t\tTimestamp servicedate, Integer months) {\r\n\r\n\t\tif (months == null)\r\n\t\t\tmonths = 12;\r\n\r\n\t\tMHRPeriod period = new MHRPeriod(getCtx(), period_id,...
[ { "docid": "0da57052543106922f288f8602ab2999", "score": "0.6971053", "text": "public Timestamp getFirstDayOfPeriodYear(int period_id) {\r\n\r\n\t\tMHRPeriod period = new MHRPeriod(getCtx(), period_id, get_TrxName());\r\n\t\tCalendar firstdayofperiod = Calendar.getInstance();\r\n\t\tTimestamp datefromofp...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "4e7703eb9f1d94efa08fc4caeb30ebb8", "score": "0.0", "text": "public static void main(String[] args) {\n\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n, max = 0 , maxindex;\n\t\tArrayList<Integer> arr, count, route;\n\t\t\n\t\tn = scan.nextInt();\n\t\tarr = new ArrayList<>();\n\t\tcoun...
[ { "docid": "da34ed11fe7c5649b3cd0bdad6dca5df", "score": "0.7115143", "text": "@Override\n\t\tpublic void 비행() {\n\t\t\t\n\t\t}", "title": "" }, { "docid": "99cfe01c5035e9a9ca6dafada0e4a005", "score": "0.67343336", "text": "@Override\r\n\tpublic void caminar() {\r\n\t\t// TODO Auto-g...
4ddd115a6f5316789dc893aa60237d3a
Returns the value of the 'Mediation Name' attribute. If the meaning of the 'Mediation Name' attribute isn't clear, there really should be more of a description here...
[ { "docid": "41b11ae40a5afc4cdc1a515a84556b2c", "score": "0.8341719", "text": "String getMediationName();", "title": "" } ]
[ { "docid": "ee4c751097f3373a2ba8f18cb1d78227", "score": "0.8454758", "text": "public String getMedcationName() {\n return medcationName;\n }", "title": "" }, { "docid": "5d384593c569ff06986142306711180d", "score": "0.76763177", "text": "public String getMedicineName() {\n\t...
e73f19f23e37d07e22402c15f74e0300
Given a Scanner as input read in a list of integers one at a time until a negative value is read from the Scanner. Store these integers in an ArrayList and return the ArrayList to the calling program.
[ { "docid": "a1f104a9c4bf4b60bd50bee4a6d43862", "score": "0.0", "text": "private static ArrayList<String> getPlayerNames(Scanner inScanner)\n\t{\n\t\tArrayList<String> names = new ArrayList<String>();\n\t\t\n\t\tString coerce = inScanner.nextLine();\n\t\t\n\t\twhile (inScanner.hasNext())\n\t\t{\n\t\t\tif...
[ { "docid": "7c613bac546a1542a9dc72f77400278f", "score": "0.7322179", "text": "List<Integer> fromScannerInput() throws IOException {\n\t\tfinal List<Integer> array = new ArrayList<>();\n\t\twhile (scanner.hasNext()) {\n\t\t\tarray.add(\n\t\t\t\t\tInteger.parseInt(\n\t\t\t\t\t\t\tscanner.next()));\n\t\t}\...
46898506b07f43a1137e1690662c8564
/ Verify Forward Button ProgressBar Enabled
[ { "docid": "092fdcfab6849bd8c4684a86fd4f7c34", "score": "0.8543629", "text": "public void verifyProgressBarForwardNavigationIsEnabled() {\n\t\tAssert.assertTrue(progressBarNextButton.isEnabled());\n\t\tverifyPageIsDisplayAndCaptureTheScreenShot();\n\t}", "title": "" } ]
[ { "docid": "27e9b71818ea9c046be1f1823a67eaa5", "score": "0.702517", "text": "public void tabOnProgressBarNextButton() {\n\t\twaitForElementToBecomeVisible(progressBarNextButton, DEFAULT_WAIT_4_ELEMENT);\n\t\tAssert.assertTrue(progressBarNextButton.isDisplayed());\n\t\t//longPress(progressBarNextButton);...
53ec90950ab75d6ca980da6c9c266c27
Get the node this edge is going to.
[ { "docid": "f6f2e79d960cb6cd7a4578a01969e087", "score": "0.6275043", "text": "public Node getTo() {\n return to;\n }", "title": "" } ]
[ { "docid": "c20b15dcd6ba089a0f557973f47985de", "score": "0.7017464", "text": "public Node getGoingTo() {\r\n if (status.equals(Status.WAITING))\r\n return null;\r\n\r\n try {\r\n locLock.acquire();\r\n } catch (InterruptedException e) {\r\n return nu...
3434a5e77b72d852787e1bd5c31f12a1
Returns the current selection.
[ { "docid": "56d3a5194405a7cc4fdb259fa7f3c49d", "score": "0.80789626", "text": "protected ISelection getSelection() {\n StructuredViewer viewerInFocus = fSelectionProviderMediator.getViewerInFocus();\n if (viewerInFocus != null) {\n return viewerInFocus.getSelection();\n }...
[ { "docid": "514dd26eaa3e428764404da304347743", "score": "0.89308804", "text": "public String getCurrentSelection() {\n \t// if (currentSelection == null) {\n \t// currentSelection = initCurrentSelection();\n \t// }\n return currentSelection;\n }", "title": "" }...
b59d6f2deb9602ab6a00645c01a8871c
purpose set Stationary Name into respective field.
[ { "docid": "6da42601aa0e163aedb99da4f09ef8fd", "score": "0.0", "text": "public String f9action() {\r\n\r\n\t\tfinal String query = \"SELECT STATIONARY_NAME,STATIONARY_CODE,STATIONARY_ID FROM HRMS_D1_STATIONARY \";\r\n\t\t\r\n\r\n\t\tfinal String[] headers = {this.getMessage(\"stationary_name\")};\r\n...
[ { "docid": "bf46db352039c1d3b1afc990e9197c09", "score": "0.67664146", "text": "public void setStationName(String value) {\r\n setAttributeInternal(STATIONNAME, value);\r\n }", "title": "" }, { "docid": "b19e497952d7fc34dcedf7058b9ec484", "score": "0.6448638", "text": "publi...
dca4b3606eeb4264514f7c118a880a2c
Finish the registration screen and return to the Login activity
[ { "docid": "8cc6000566de25ab872eb20e26db8bd0", "score": "0.0", "text": "@Override\n public void onClick(View v) {\n finish();\n }", "title": "" } ]
[ { "docid": "069d91d57a8ef08da37bad2133d2cada", "score": "0.7875825", "text": "private void goToLoginOrRegisterScreen() {\n Intent intent = new Intent(RegisterScreen.this, LoginOrRegister.class);\n this.finish();\n this.startActivity(intent);\n }", "title": "" }, { "docid": "273d02b...
f4de7fbf3e83d447146fb78327b3cd43
Handles the 'kindergarten' stage
[ { "docid": "92b261828cd38928bee5d778c326f5e2", "score": "0.52503604", "text": "private void goToKindergarten(LocalDate date, String name) {\n observer.onHumanWasSentToKindergarten(new IHumanLifecycleObserver.HumanKindergartenParam(\n name, date));\n }", "title": "" } ]
[ { "docid": "a20023674bca18a7c81cdefa5e0c26ff", "score": "0.58160424", "text": "@Override\n public void Enter(LumberJack pLumberjack) {\n if (pLumberjack.Location() != location_type.forest) {\n SetTextColor(FOREGROUND_RED | FOREGROUND_INTENSITY);\n cout(\"\\n\" + GetNameOf...
f1887424894af41c2129ab2d9b3e5c70
Tries to get the guild manager for a given guild id. Creates a new guildmanager if it doesnt exists.
[ { "docid": "c36b7a8c5c39f3f3ede826bd3ca44512", "score": "0.75475246", "text": "public static GuildManager of(Snowflake id) {\n return getGuildManagers().computeIfAbsent(id, ignored -> {\n try {\n return new GuildManager(id);\n } catch (IOException e) {\n ...
[ { "docid": "386fce2d83c400cc18bbb8d6cc7e9295", "score": "0.5735407", "text": "public IGuild getGuild() {\n\t\treturn manager.getGuild();\n\t}", "title": "" }, { "docid": "61d88ade32fc60249df05496ba0abd77", "score": "0.5662111", "text": "@Override\n @Cacheable(cacheNames = \"mono\"...
f3009db722ec5492f73d0b76d0143681
Pull data from fields
[ { "docid": "09a11816a3c1307507f44a0fc4bbd156", "score": "0.0", "text": "@Override\n public void onClick(View v) {\n String ue = useremail.getText().toString().trim();\n String up = userpass.getText().toString().trim();\n if(TextUtils.isEmpty(ue)||T...
[ { "docid": "dd7dbb82976eb6543d93c870c5e22f60", "score": "0.67786", "text": "java.lang.String getField();", "title": "" }, { "docid": "39f42afc431c1e861a9e5f25f56004cd", "score": "0.66211444", "text": "String getField();", "title": "" }, { "docid": "d404cd66dde8b62719ce734...
a741c2394845e946421ff054e2a5107c
Access to the variable this.datesellday
[ { "docid": "bd5e34c8cfcb406bb20c47010374b654", "score": "0.8386752", "text": "public Integer getDatesellday() {\n return this.datesellday;\n }", "title": "" } ]
[ { "docid": "595c1e76422d739f8abedfaadb76f142", "score": "0.80089396", "text": "public void setDatesellday(Integer datesellday) {\n this.datesellday = datesellday;\n }", "title": "" }, { "docid": "68035822d42d510dfae3de79b39c2929", "score": "0.72333103", "text": "public Inte...
acd671da1f9c99aa7b0370c75ae258f6
/ access modifiers changed from: 0000 / JADX WARNING: Code restructure failed: missing block: B:16:0x0023, code lost: if (r1 == r4.length) goto L_0x0025; / renamed from: a / Code decompiled incorrectly, please refer to instructions dump.
[ { "docid": "d0612e0d9f81be323d553fb3f24e3106", "score": "0.669737", "text": "public void mo42895a(int r3, java.lang.Throwable r4) {\n /*\n r2 = this;\n e.a.x0.j.c r0 = r2.f38860T\n boolean r0 = r0.mo43142a(r4)\n if (r0 == 0) goto L_0...
[ { "docid": "158a3e771f9c4d4e310a2a10ee0b3bc1", "score": "0.74667144", "text": "public boolean c() {\n /*\n r6 = this;\n r0 = r6.p;\n if (r0 != 0) goto L_0x00b0;\n L_0x0004:\n r1 = new java.lang.StringBuilder;\n r1.<init>();\n r0 = z;\t Catch:{ IllegalA...
0299233fbaa4c219192d621ec49cb8e6
Return the king which has the same color as the current piece
[ { "docid": "bd1a70a99f52f1e953964a6614efb748", "score": "0.8255102", "text": "protected King getKingOfSameColor() {\r\n\t\tif (this.color == WHITE) {\r\n\t\t\treturn myBoard.whiteKing;\r\n\t\t} else {\r\n\t\t\treturn myBoard.blackKing;\r\n\t\t}\r\n\t}", "title": "" } ]
[ { "docid": "017474a71577eeeea5a2b846c062534c", "score": "0.69097733", "text": "public boolean canMoveKing(String color) {\r\n\r\n\t\tChessPiece[][] tmpPtr = new ChessPiece[8][8];\r\n\t\tChessBoard temp = new ChessBoard();\r\n\t\ttemp.chessBoard = tmpPtr;\r\n\r\n\t\tfor (int m = 0; m < 8; m++) {\r\n\t\t\...
ee19f8044f0290d487d9eaaf4a0a9a5a
Getter for number of properties that have been added
[ { "docid": "df85753030c3db41fa79ddb3d55fad59", "score": "0.7696466", "text": "public int getNumProperties() {\n\t\tDefaultListModel<ItemProperty> listModel = (DefaultListModel<ItemProperty>) list.getModel();\n\t\treturn listModel.getSize();\n\t}", "title": "" } ]
[ { "docid": "adec8776952b100baacc84778c7f2b8f", "score": "0.82929856", "text": "public int getPropertiesCount() {\n return properties_.size();\n }", "title": "" }, { "docid": "ff3756ddd6165dad816ac4d3f5900a06", "score": "0.815738", "text": "int getAddPropsCount();", "title": "...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "1b47f9df9fbda3047de723fd951b62a8", "score": "0.0", "text": "@Override\r\n\tpublic void displayBatchDetails(String sequenceName, int seqNumber) {\n\t\trpcService.getSequenceResultMap(sequenceName, seqNumber, new AsyncCallback<SequenceDetailsMap>() {\r\n\r\n\t\t\t@Override\r\n\t\t\tpublic void...
[ { "docid": "663ac6f718361fb243bf093a1c7ded6a", "score": "0.66285414", "text": "@Override\r\n\tprotected void Goukakyuu() {\n\t\t\r\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}"...
99994f025515823fd72d6ae0cc125e29
Confirm that logon() logs a person onto the computer in the same room or does nothing if someone is already logged on or computer is in a different room.
[ { "docid": "a34cbfc70d9dc548914c50c6842e3828", "score": "0.6957414", "text": "@Test\n\tpublic final void testLogon() {\n\t\ttestPerson.moveTo(testLocation1);\n\t\ttestLocation2.addThing(computer1);\n\t\t\n\t\tcomputer1.logon(testPerson);\n\t\tassertEquals(\"Cannot logon to computer from different locati...
[ { "docid": "b59d677726207a829d66e930374c2aca", "score": "0.61607164", "text": "public void onLogin(){\r\n sendCommand(\"$set bell 0\");\r\n sendCommand(\"$iset gameinfo 1\");\r\n sendCommand(\"$iset showownseek 1\");\r\n sendCommand(\"set autoflag true\");\r\n sendCommand(\"set formula pr...
86b1fe05238d494fbcdf2a4b28a3c1db
Gets or creates a named meter instance. This is a shortcut method for getMeterProvider().get(instrumentationName).
[ { "docid": "d212009b4adfe79d231bcd0dc73fa0ac", "score": "0.8630075", "text": "public static Meter getMeter(String instrumentationName) {\n return getMeterProvider().get(instrumentationName);\n }", "title": "" } ]
[ { "docid": "537a357c1e308155a5f0fb3c1232b431", "score": "0.785458", "text": "public static Meter getMeter(String instrumentationName, String instrumentationVersion) {\n return getMeterProvider().get(instrumentationName, instrumentationVersion);\n }", "title": "" }, { "docid": "24762bc248...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "5d7c9dca6ae841d2fff5c941a5ef8909", "score": "0.0", "text": "@Override\n\tpublic void delete(Long idCourse) {\n\t\t_courseDAO.delete(idCourse);\n\t}", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.6840185", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "118f2b8a20f48999973063ac332d07d3", "score": "0.65644246", "text": "@Override\r\n\t\t\tpublic void atras() {\n\r\n\t\t\t}", ...
7f9228251c79d3e2cc99e12eccb8d693
Check if contact exists between users.
[ { "docid": "0c51fddb5dd1fa7ff115b9384c5b52af", "score": "0.6261366", "text": "boolean exists(User user, User anotherUser);", "title": "" } ]
[ { "docid": "f03b92a0abf61a0d131167476d695cb6", "score": "0.6562701", "text": "boolean exists(Contact contact);", "title": "" }, { "docid": "0f5817de4b9687dc3183ac0a0ebaba04", "score": "0.6488422", "text": "boolean hasContact();", "title": "" }, { "docid": "e3e40430735277b...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "f8e5366de74f622552561396fc4f2254", "score": "0.0", "text": "@Override\r\n\t\t\tpublic void onClick(View v) {\n\t\t\t\tif (ConnectionActivity.isNetConnected(AdminHomeActivity.this)) {\r\n\r\n\t\t\t\t\tsetCurrentGym();\r\n\t\t\t\t\t//placeList.clear();\r\n\r\n\t\t\t\t} else {\r\n\t\t\t\t\td.sh...
[ { "docid": "ffe5fe3cec40acf4b0b07ea257dfa06a", "score": "0.6831473", "text": "private void apparence()\r\n\t\t{\r\n\r\n\t\t}", "title": "" }, { "docid": "838a915c9ea69d56cc37df198cff9cb2", "score": "0.67589027", "text": "@Override\n\t\t\t\tpublic void pintar() {\n\t\t\t\t\t\n\t\t\t\t...
694b5be608e1f50751caf59d9ead0939
This method shows the uploaded files.
[ { "docid": "e014d7b3fd42f18e23970ffb7163243b", "score": "0.5360109", "text": "public void showFilesToSend(boolean showDeleteButton) {\r\n\r\n\t\tuploadAppletIsVisible = false;\r\n\t\tbtnButtoncheck.setEnabled(true);\r\n\t\tflexTable_Result_Recipients.clear(true);\r\n\t\tServiceDefTarget endpoint = (Serv...
[ { "docid": "74767eb7f05e1def5acb94f69dbb3ef3", "score": "0.70225203", "text": "protected void showUploadedFiles(HttpServletRequest request, HttpServletResponse response) throws ServletException,\n IOException {\n String uploadPath = getServletContext().getRealPath(\"\") + File.separato...
a3f33d913e2d3add3db9053e8289d8a7
static method > public static concrete method
[ { "docid": "f53303357dff6b516b968aee403435d2", "score": "0.0", "text": "public static void display2(){\n\t\tSystem.out.println(\"Static Method inside interface\");\n\t}", "title": "" } ]
[ { "docid": "de94b7c2b924c15541618591fc041e62", "score": "0.66946477", "text": "private static void staticFun()\n {\n }", "title": "" }, { "docid": "02a73b1203921e0bb13a49fdf6a72cfe", "score": "0.65364224", "text": "public static void staticMethod() {\n Log.e(\"LOG_TAG\",...
4904f8057630e1d6aefc905167fac597
database handler Spinner Drop down elements
[ { "docid": "faf9592207b4ec020ddb6d3ea36b9f86", "score": "0.68085855", "text": "private void loadSpinnerData() {\n rows = db.getPumpDetails();\n\n // Creating adapter for spinner\n dataAdapter = new ArrayAdapter<String>(this,\n android.R.layout.simple_spinner_item, row...
[ { "docid": "6956c30032f9cade65867bf042ec0786", "score": "0.7136766", "text": "private void loadSpinnerData() {\n\n // Spinner Drop down elements\n areas = dbHendler.getAllAreas();\n for (Area area : areas) {\n String singleitem = area.get_areaName();\n items.ad...
b2a27652fca5245eb9ab662cc3c156c3
optional string group_hangmog = 29;
[ { "docid": "7b1196f41e868f5a1cd28dad42328470", "score": "0.5860422", "text": "com.google.protobuf.ByteString\n getGroupHangmogBytes();", "title": "" } ]
[ { "docid": "c2442f52da74ce10ba9999ccc260715b", "score": "0.7794952", "text": "java.lang.String getGroupHangmog();", "title": "" }, { "docid": "c2442f52da74ce10ba9999ccc260715b", "score": "0.77939963", "text": "java.lang.String getGroupHangmog();", "title": "" }, { "docid"...
e6eea8a58b4e118c70f86a4705cf0f42
/ Returns a string to representation the list
[ { "docid": "9fc84c174637f84b67ddaaa2ab51cfcb", "score": "0.79279655", "text": "public String toString(){\n\t\tString result = \"[\";\n\t\tfor(int i = 0; i < size() ; i++){\n\t\t\tresult += list[i].toString();\n\t\t\tif(i < size() -1){\n\t\t\t\tresult += \",\";\n\t\t\t}\n\t\t}\n\t\tresult += \"]\";\n\t\t...
[ { "docid": "a3b6d975030821a138b26a4458f67cd5", "score": "0.8212308", "text": "public String toString() {\n return list.toString();\n }", "title": "" }, { "docid": "c95e041777ea00b28b88e78c9a9149f3", "score": "0.8127924", "text": "public String toString(){\n return list.toS...
575fe29c91ca54dbfbc4a329365275f4
create service function groups, types firewall and dpi
[ { "docid": "2c24268f64f822f77da12f3f0e1175f8", "score": "0.5096742", "text": "@Test\n public void testGetSfgNameList() {\n ServiceFunctionGroupsBuilder serviceFunctionGroupsBuilder = new ServiceFunctionGroupsBuilder();\n serviceFunctionGroupsBuilder.setServiceFunctionGroup(createService...
[ { "docid": "8c4fe116b41afb222f541a2f76d363bf", "score": "0.71630704", "text": "private List<ServiceFunctionGroup> createServiceFunctionGroupList() {\n\n List<ServiceFunctionGroup> serviceFunctionGroupList = new ArrayList<>();\n ServiceFunctionGroupBuilder serviceFunctionGroupBuilder = new ...
0f516e00307066898abfb2484a8fef48
Returns the set of CommonJS input sources for the compiler.
[ { "docid": "1c5c6a805cb41fe8fb84b67980a447d4", "score": "0.48520482", "text": "ImmutableSet<Path> getModules() {\n return modules;\n }", "title": "" } ]
[ { "docid": "d05092430e6719700bae9f39f05cbc5e", "score": "0.61300594", "text": "public String[] getSources() {\n\t\treturn sources;\n\t}", "title": "" }, { "docid": "ab765788706cb2829ca34a7f6aa11018", "score": "0.6118397", "text": "ImmutableSet<Path> getSources() {\n return srcs;\n...
e7a7c05700d2b7efaf46e6f1384a8140
/ returns the importer name
[ { "docid": "971c31ce729eeabeca7d542fbb651469", "score": "0.0", "text": "@Override\r\npublic String getName() {\r\n\t\r\n\treturn \"HCatalog Schema Importer (Databases as Schema)\";\r\n}", "title": "" } ]
[ { "docid": "1ed3f001299270f437fd3d33d7cd5889", "score": "0.90172666", "text": "java.lang.String getImporterName();", "title": "" }, { "docid": "1ed3f001299270f437fd3d33d7cd5889", "score": "0.90172666", "text": "java.lang.String getImporterName();", "title": "" }, { "docid...
39dce96d9c148aede8b77602836e6c7a
optional string grammar_id = 1;
[ { "docid": "2642b2a1a559554c9632c6563fce9739", "score": "0.62080145", "text": "@java.lang.Override\n public boolean hasGrammarId() {\n return ((bitField0_ & 0x00000001) != 0);\n }", "title": "" } ]
[ { "docid": "b31abe7bd89778b4cec64826f7f5ca5f", "score": "0.7669143", "text": "java.lang.String getGrammarId();", "title": "" }, { "docid": "aca9444a17ecfcc11d59c271ad7cfcfb", "score": "0.7095632", "text": "public Builder setGrammarId(\n java.lang.String value) {\n ...
fa28c86727f2ebf72f296c09240abba4
optional .yuri.Lobby lobby = 2;
[ { "docid": "9989b29c3ac29341e0a7ded5fc61de9b", "score": "0.57152635", "text": "boolean hasLobby();", "title": "" } ]
[ { "docid": "76235d3b21e32d8f09fd05eb68fdcfa8", "score": "0.69475096", "text": "io.yuri.yuriserver.packet.Protos.Lobby getLobby();", "title": "" }, { "docid": "9bfee0af4751fdae52bfaf3fc247eab1", "score": "0.6716091", "text": "io.yuri.yuriserver.packet.Protos.LobbyOrBuilder getLobbyOrB...
ca72c43811268a229826f650ee5d39bc
Shows bottom bar if RecyclerView smaller than screen in full screen mode
[ { "docid": "427c5c0076a7d23b19737411ca99b935", "score": "0.69490933", "text": "private void showBottomBar(boolean isFullScreen) {\n if (!isFullScreen || mBottomBar == null || mCursor == null || mCursor.getCount() == 0) {\n return;\n }\n if (isShowBar()) {\n mBo...
[ { "docid": "c915311be59a4664ff2e56520c009aca", "score": "0.65464973", "text": "private void setFullScreen(boolean isFullScreen) {\n\n if (isFullScreen) {\n mIsFullScreen = true;\n// getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN);\n ...
44ff2486f555d5779ab90ad12278b358
To define a proxy protocol when instantiating the S3 client. The option is a: com.amazonaws.Protocol type. Group: common
[ { "docid": "1a51741a3dec3750a068d5b2184c0dad", "score": "0.7829048", "text": "default S3EndpointBuilder proxyProtocol(Protocol proxyProtocol) {\n doSetProperty(\"proxyProtocol\", proxyProtocol);\n return this;\n }", "title": "" } ]
[ { "docid": "9f9ea8159d85a6c0c04c1ce3ca5874b3", "score": "0.785939", "text": "default S3EndpointBuilder proxyProtocol(String proxyProtocol) {\n doSetProperty(\"proxyProtocol\", proxyProtocol);\n return this;\n }", "title": "" }, { "docid": "ed58d7f5aec06cc428357ea...
7991161ed518397e0037149e93ff54e2
$FF: renamed from: 4 () io.netty.channel.ChannelOutboundInvoker
[ { "docid": "f72f5d3e3d5aea1423730646b85df1cf", "score": "0.68340087", "text": "public ChannelOutboundInvoker method_4129() {\n return this.method_4112();\n }", "title": "" } ]
[ { "docid": "c1ba15faf7b8427b1aed5d9c9e11b228", "score": "0.6943383", "text": "public ChannelOutboundInvoker method_4125() {\n return this.method_4121();\n }", "title": "" }, { "docid": "c9665d65efd2bcb6f627145291174529", "score": "0.62542987", "text": "@Override\n\tprotected v...
7248a2a5f3242d8748a3864f114f1260
Endpoints que queremos acessar da API
[ { "docid": "e22539ae78f7d1293113e078537f2188", "score": "0.0", "text": "public interface UsuarioRestInterface {\n\n @POST(\"rest/auth/jwt\")\n Call<ResponseBody> realizarLogin(@Body Usuario usuario);\n\n}", "title": "" } ]
[ { "docid": "03729c5b5e5640281eb3f61b5a2d0b40", "score": "0.68165964", "text": "public interface HttpAPIS {\n\n String HOST = \"http://guolin.tech/api/\";\n\n @GET(\"china\")\n Call<List<Province>> getProvince();\n\n @GET(\"china/{provinceId}\")\n Call<List<City>> getCity(@Path(\"provinceI...
d4499af165f1f4580cc6787597e854e4
Pops the top of the scope stack
[ { "docid": "e2f69b29e759b0aa423ce66b6c1ae8b5", "score": "0.68306184", "text": "public static QuantifiedFormula popScope() {\r\n\t\treturn scopeStack.pop();\r\n\t}", "title": "" } ]
[ { "docid": "6864651c3fa1c083dca0a1af1ca3a247", "score": "0.7787816", "text": "public void popScope() {\r\n scopeStack.removeLast();\r\n }", "title": "" }, { "docid": "ea3feb8639d0aad41e6fac72623f913e", "score": "0.7216599", "text": "public void popTopPath(){\r\n\t\tnStack.p...
3ebb9c4da09c5a1bb627a49498014863
TODO: your plugin is no longer associated with an Activity. Clean up references.
[ { "docid": "3f488439dfd82a42281403f09b29ee1b", "score": "0.0", "text": "@Override\n public void onDetachedFromActivity() {\n }", "title": "" } ]
[ { "docid": "0751e7447502fa6460d45ce37be9b22d", "score": "0.61374515", "text": "public JavActPlugin() {\n plugin = this;\n }", "title": "" }, { "docid": "5c678a29e5870f89b6c348f01557e3d0", "score": "0.6132629", "text": "public interface ArgoPlugin {\n/**\n * This method will...
d209fd62eccf7817aeec22dfacb2be38
Method that get list of persons
[ { "docid": "7d9c099b1829ad9873450a90cde3f3a5", "score": "0.8739154", "text": "public List<Person> getListPersons();", "title": "" } ]
[ { "docid": "12c55c14480b6e27476d8a3f8be8f6e9", "score": "0.8588924", "text": "public List<Persona> listPersons();", "title": "" }, { "docid": "12c55c14480b6e27476d8a3f8be8f6e9", "score": "0.8588924", "text": "public List<Persona> listPersons();", "title": "" }, { "docid":...
7e2effa4061f71d13bec43e9e55bb962
Retrieves decision by id.
[ { "docid": "9171fe1b52b33b954157d4c42980df5a", "score": "0.73088604", "text": "private Decision getDecision(int decisionId) {\n for (DecisionPoint dp : decisionPoints) {\n Decision dec = dp.getDecision(decisionId);\n if (dec != null) {\n return dec;\n ...
[ { "docid": "dffacc8bfbb1efdff928f97c0471a40f", "score": "0.6989622", "text": "public static Decision getDecision(String caseId) throws TrustevApiException\n\t{\n\t\tString url = \"/Decision/\" + caseId;\n\t\tDecision response = (Decision)PerformHttpCall(url, HttpMethod.GET, Decision.class, null, true);\...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "2edbd567b5fb223c98ee4f7f7780e7cb", "score": "0.0", "text": "@Override\n public int hashCode() {\n return t.hashCode();\n }", "title": "" } ]
[ { "docid": "663ac6f718361fb243bf093a1c7ded6a", "score": "0.66285414", "text": "@Override\r\n\tprotected void Goukakyuu() {\n\t\t\r\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}"...
bd71d99b2d59650620def1526b6bc61d
Gets the value of the createReplica property.
[ { "docid": "a847b53f2c62302e691f6803d58717ff", "score": "0.7476485", "text": "public boolean isCreateReplica() {\n if (createReplica == null) {\n return false;\n } else {\n return createReplica;\n }\n }", "title": "" } ]
[ { "docid": "3cee82c49bb2ebcb7b97be165935899c", "score": "0.7181783", "text": "public void setCreateReplica(final Boolean value) {\n this.createReplica = value;\n }", "title": "" }, { "docid": "70c5a31680272c274d35e979e9c52664", "score": "0.6714448", "text": "public String g...
0598871530064cfcc4b42681da536f63
Set the Mandatory value.
[ { "docid": "fc6f102f9a6a527092eb5196ded8ff57", "score": "0.73676383", "text": "public void setMandatory(boolean newMandatory) {\n\tthis.mandatory = newMandatory;\n }", "title": "" } ]
[ { "docid": "0e85232e8e058363c646b9a6c5180c4d", "score": "0.7266506", "text": "public abstract void setMandatory(boolean mandatory);", "title": "" }, { "docid": "9f8fc91a3c2be0a01b21c4c4e55d75cc", "score": "0.6771537", "text": "public void setRequired(boolean value) {\n getElem...