query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "e97577b45261e129a6373544f48f864e", "score": "0.0", "text": "@Override\n\t\t\t\t\t\tpublic void onClick(DialogInterface dialog, int which) {\n\t\t\t\t\t\t\tfinish();\n\t\t\t\t\t\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...
1b0d565bf61456bd457073490770282c
Signals to the task to consider itself successfully done with a result
[ { "docid": "df3ed8c53759f463fc1df982d5f2158a", "score": "0.64649093", "text": "void finish(T result);", "title": "" } ]
[ { "docid": "4597745fa59c70293b03e0544db20176", "score": "0.7542136", "text": "protected void FinishWithSuccess()\r\n\t{\r\n\t\tthis.sucess = true;\r\n\t\tthis.done = true;\r\n//\t\ttask.LogTask(\"Finished with success\");\r\n\t}", "title": "" }, { "docid": "35cb7445f754875a96eb6f965c8b5f06",...
18a4bacfb1276ed2195754a04ce2918f
This method was generated by MyBatis Generator. This method corresponds to the database table package_item
[ { "docid": "e1b1e96dbc0df50e01cc4c97951ef1a5", "score": "0.0", "text": "int deleteByPrimaryKey(Integer id);", "title": "" } ]
[ { "docid": "e839603365907f960317391d25942d31", "score": "0.56799203", "text": "PackageItem selectByPrimaryKey(Integer id);", "title": "" }, { "docid": "373d05aedd59073b928dfd5ebdbbd1f7", "score": "0.5399292", "text": "public static Package loadPackageById(Integer PackageId){\n ...
618cafa4ccebaea4becb9a0949954fd1
A transaction is valid if the verify() function of the contract of all the transaction's input and output states does not throw an exception.
[ { "docid": "2955d9d53b5cbd6917e9c526033f6cb5", "score": "0.6279708", "text": "@Override\n public void verify(LedgerTransaction tx) {\n CommandWithParties<Commands> cmd = requireSingleCommand(tx.getCommands(), Commands.class);\n if (cmd.getValue() instanceof Commands.Request){\n ...
[ { "docid": "a1d48dc4f3f8833274039b5a0b76e499", "score": "0.66397476", "text": "@Override\n public void verify(@NotNull LedgerTransaction tx) {\n final CommandWithParties<Commands> command = requireSingleCommand(tx.getCommands(), Commands.class);\n final Commands commandData = command.ge...
93a295e0fb2defce81d2d98ec6afb0b7
Sort files order by asc.
[ { "docid": "397d90c8473845176a1a787f4e836e16", "score": "0.68217015", "text": "public static void sort(FileObject[] files) {\n sort(files, false);\n }", "title": "" } ]
[ { "docid": "c0c1ce9ebde68ae02c14f6e54215a84d", "score": "0.79546374", "text": "public void sortFiles(){\n\t\tFile thisFile = new File(System.getProperty(\"user.dir\"));\n\t\tpath = thisFile.getParentFile().getAbsolutePath();\n\t\tFile folder = new File(path+\"/wc_input\");\n\t\tlistofFiles = folder.list...
297e22c562a3d0452f5f0d30063cd3b6
Wraps the query given in its XML representation into a SOAP message and sends it directly to the repository's Query Operations Module using HTTP POST. The query results will be unwrapped from the SOAP response message.
[ { "docid": "0e123c0387c5c128017af8e410d5920b", "score": "0.5937189", "text": "public String pollDirect(final String query) throws IOException {\r\n String soapReq = wrapIntoSoapMessage(query);\r\n String soapResp = doPost(soapReq.getBytes());\r\n String queryResp = unwrapFromSoap...
[ { "docid": "80e00426fd923a29ca5af2056c444f2e", "score": "0.6587956", "text": "private String wrapIntoSoapMessage(final String query) {\r\n StringBuffer soap = new StringBuffer();\r\n soap.append(\"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\");\r\n soap.append(\"<soapen...
6354cd124e22b34d84cdf3b4651822f8
/ rand() Returns a random value between int a and int b.
[ { "docid": "5d636316a325d9b93f24e3033104c982", "score": "0.8406186", "text": "public static int rand(int a, int b)\n {\n return((int)((b-a+1) * Math.random() + a));\n }", "title": "" } ]
[ { "docid": "fbf10402b081a61626a5a2e49a881785", "score": "0.8373566", "text": "private int randInt(int a, int b) {\n\t\treturn (int) (Math.random() * (b - a) + a);\n\t}", "title": "" }, { "docid": "1adda6ae25e6b0542f394ba7f7922abd", "score": "0.804073", "text": "private static int get...
b73214e9bed8f37d70056702ba001549
/ String SELECT_QUEUE="select queue.queue_id from queue " + "inner join department on department.department_id = queue.department_id " + "inner join doctor on doctor.doctor_id = queue.doctor_id " + "where department.name = ? and doctor.name = ? and queue.endtime is null"; updated queueing String QUEUE_PATIENT = "insert...
[ { "docid": "1583fe99bad67fd3e4c06aef75a0f132", "score": "0.70525706", "text": "public static String insert(int departmentid,int doctorid,String firstname, String lastname,String contactno){\n\t\tboolean condition=false;\n\t\tString queuenum=\"\";\n\t\tConnection con = getConnection();\n\t\t String query...
[ { "docid": "580afb4838eac9d350b4f4468d3ee274", "score": "0.586441", "text": "public String logDeHotlistedDetails(String dbServer,String card_num,String fistname,String lastname,String email,\n\t\t\tString phone,String street,String cardExp,String onlinebalance,String cashwithdraw,\n\t\t\tString boundwor...
8a9210e7b1172e17870911ad2bbf6572
array with hours day by day for each employee
[ { "docid": "87bd12bb88fe6d9b02a5a76b3ee58c6c", "score": "0.5117468", "text": "public static void main(String[] args) {\n\t\tint[][] employeeHours = { { 2, 4, 3, 4, 5, 8, 8 }, { 7, 3, 4, 3, 3, 4, 4 }, { 3, 3, 4, 3, 3, 2, 2 },\n\t\t\t\t{ 9, 3, 4, 7, 3, 4, 1 }, { 3, 5, 4, 3, 6, 3, 8 }, { 3, 4, 4, 6, 3, 4, ...
[ { "docid": "c868e9178c7cf4cadd674eda87b439c4", "score": "0.66868484", "text": "public List<Date> getHours();", "title": "" }, { "docid": "7eee23f13abe9f98da22215ba333e51a", "score": "0.6656964", "text": "public Integer[] getHours()\n {\n return getHours(true);\n }", "title":...
08a5e367064edec3ed564243097afa66
available classifiers tree ==========================
[ { "docid": "ff9632dbe82cef2b43ee17cec3dbded7", "score": "0.56126827", "text": "protected static void initAdvListeners(final GUIMain main) {\n \t\t\r\n \t\tmain.PPSP.classJTree.addTreeSelectionListener(new TreeSelectionListener() {\r\n \t\t\t\r\n \t\t\t@Override\r\n \t\t\tpublic void valueChanged(TreeSel...
[ { "docid": "e3bf2bea8cc1b7db11e3565e51cbeaf1", "score": "0.7028556", "text": "protected static void initAdvWekaClassifiersTree(PreProcessSettingsFrame PPSP) {\r\n \t\t// create root and set to tree\r\n \t\tDefaultMutableTreeNode wekaNode = new DefaultMutableTreeNode(\"weka\");\r\n \t\tDefaultMutableTree...
98c7362eb7d0c403c9f0dd55e9fa4601
Matches given tokens ans returns the corresponding score.
[ { "docid": "fcde437236e2bc712a24fad4e9d0a979", "score": "0.6668339", "text": "double getScore(IToken tk1, IToken tk2);", "title": "" } ]
[ { "docid": "52cdfe26d08b88efbb117eb71281b6e9", "score": "0.60708296", "text": "public static IntPair getRate(List<CoreLabel> tokens, int tokenId) {\n\t\tfor(int i=tokenId+1; i<tokens.size(); ++i) {\n\t\t\tif(tokens.get(i).word().equals(\"if\") || tokens.get(i).word().equals(\"and\") ||\n\t\t\t\t\ttokens...
b84c1a5ba5ea6afdab82df6f13652a2f
Returns all methods of the given class, including superclasses, except those of the given stop class and private methods. If a method is overridden by a subclass, it is not returned.
[ { "docid": "0e6b467a982eb2758a67033c86e40754", "score": "0.772504", "text": "public static ArrayList<Method> getAllMethods(Class<?> beanClass, Class<?> stopClass) {\r\n\t\tArrayList<Method> methods = new ArrayList<Method>();\r\n\t\tMethod[] declaredMethods = beanClass.getDeclaredMethods();\r\n\t\tmethod...
[ { "docid": "ce909ffaecc124e44dfc2f1257e07f04", "score": "0.64469534", "text": "public List<Method> getMethods(Class<?> aClass) {\n\t\tList<Method> result = new ArrayList<Method>();\n\n\t\tfor (Method m : aClass.getMethods()) {\n\t\t\tif (!this.skipMethod(m)) {\n\t\t\t\tresult.add(m);\n\t\t\t}\n\t\t}\n\n...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "9929fd1574d2087ae5eced9a8b72919e", "score": "0.0", "text": "@Override\n\tpublic void create(CarDTO car) {\n\t}", "title": "" } ]
[ { "docid": "b7c706d331e2b507ec0ff8404ad87dc7", "score": "0.69750255", "text": "@Override\r\n\t\t\tpublic void crispel() {\n\t\t\t\t\r\n\t\t\t}", "title": "" }, { "docid": "76b3966c8e3f64884c4127d1a3df09a8", "score": "0.6807575", "text": "@Override\r\n\t\t\tpublic void maruti() {\n\t\...
1bf89447b80ec86ff401a389c9f91f7d
/ access modifiers changed from: protected
[ { "docid": "a15cd17cbabc0acd4b446ec63b0b024b", "score": "0.0", "text": "public HttpHost determineProxy(HttpHost httpHost, HttpRequest httpRequest, HttpContext httpContext) throws HttpException {\n try {\n Proxy chooseProxy = chooseProxy(this.proxySelector.select(new URI(httpHost.toURI(...
[ { "docid": "0c69424878be03e50f19e2ca61ef640b", "score": "0.7095287", "text": "@Override\r\n\tpublic void leggi() {\n\t\t\r\n\t}", "title": "" }, { "docid": "eaeafae753257c4f617a400374c698f3", "score": "0.70800626", "text": "protected void s() {}", "title": "" }, { "docid"...
e52b0280962828f9b8d0d490819d9c27
Listener to TracksModel changes
[ { "docid": "0a91880aa578755c26b0966dee45cdf1", "score": "0.737457", "text": "public interface TracksModelListener extends TableModelListener{\r\n\r\n\tpublic void trackAdded(VidesoTrack track);\r\n\t\r\n\tpublic void trackRemoved(VidesoTrack track);\r\n\t\r\n\tpublic void trackAdded(Collection<VidesoTra...
[ { "docid": "b76fec639987aeb25c85c379a394dac8", "score": "0.6677286", "text": "public void modelChanged()\n {\n setChanged(); \n notifyObservers();\n }", "title": "" }, { "docid": "f51c51a2faa349a866fd29e10d7bc281", "score": "0.65197146", "text": "public void fireM...
d4fa66762a957e186eacfcc68c621b50
Required method for creating the viewholder objects.
[ { "docid": "94d2c77e0a642c0ff79183fd523984f6", "score": "0.0", "text": "@Override\n public CharactersAdapter.ViewHolder onCreateViewHolder(\n ViewGroup parent, int viewType) {\n return new ViewHolder(LayoutInflater.from(mContext).\n inflate(R.layout.list_item, parent,...
[ { "docid": "6fc35c7cad9e0d78b7bc92ab0c908c39", "score": "0.70552087", "text": "private ViewHolder(View view) {\n super(view);\n mView = view;\n mSDescView = view.findViewById(R.id.item_shortDesc);\n mCatView = view.findViewById(R.id.item_catego...
512ee13f7ed74c9866b1e1a9448dd709
<< define FldINItemGroupParentGroup 1
[ { "docid": "cfc6f065ff52eaa730441a0c0d55c8f7", "score": "0.7344745", "text": "public static Object $$$FldINItemGroupParentGroup(mContext m$) {\n return (1);\n }", "title": "" } ]
[ { "docid": "c9b7dd6b7e976cdfe98f43825174f224", "score": "0.7376493", "text": "public static Object $$$StrINItemGroupParentGroup(mContext m$) {\n return (m$.fnc$(\"COMConst.GetPropertyName\",\"INItemGroup\",1));\n }", "title": "" }, { "docid": "120fe8d84571dd8e84b9b85426440bbd", "scor...
8977bc3569f7ea2a2419e517f81f21bd
The link summary comment. Getter method for the COM property "Comment"
[ { "docid": "e175382363452088b0108a498b949a87", "score": "0.6556731", "text": "@DISPID(17) //= 0x11. The runtime will prefer the VTID if present\n @VTID(30)\n String comment();", "title": "" } ]
[ { "docid": "ebafffc7017de6630ec1060551d52f51", "score": "0.7452536", "text": "public String getComment() {\r\n return comment;\r\n }", "title": "" }, { "docid": "c932bc80037a9858cd7a7cb9af301dbb", "score": "0.7400309", "text": "public String getComment() { return comment; }...
15eb301cd1aacac6fc114c76eb94e23b
Updates favorite list, pager and alt TextView
[ { "docid": "093521390f2108b353edaefe8d7ec4a5", "score": "0.6045163", "text": "public void refresh() {\n if (!databaseManager.noFavorites()) {\n if (favoriteIndex == databaseManager.getFavComics().size())\n favoriteIndex--;\n\n updateFavorites();\n }\n ...
[ { "docid": "94d48dff3d20b2a58dcb09413c5d9c61", "score": "0.6996744", "text": "@Override\n public void onClick(View v) {\n PagerModel text = pagerModels.get(mpager.getCurrentItem());\n String title = text.getTitle();\n String body = text.getBody();\...
f852afc3c45133e706f52790b9ffffc5
Test case number: 50 /Coverage entropy=0.0
[ { "docid": "499c679ad54696b07dbc03d0ee52ebca", "score": "0.0", "text": "@Test(timeout = 4000)\n public void test050() throws Throwable {\n // Undeclared exception!\n try { \n MethodWriter.readInt((byte[]) null, 1);\n fail(\"Expecting exception: NullPointerException\");\n ...
[ { "docid": "055ba127b654ead4d04e0018e83bd7b4", "score": "0.66625184", "text": "@Test(timeout = 4000)\n public void test09() throws Throwable {\n Discretize discretize0 = new Discretize();\n discretize0.setOutputFormat();\n discretize0.setBins((-263));\n discretize0.setIgnoreClass(...
3041efcc75093582a01dc0dacf8d07f5
/ Access modifiers changed, original: protected|final
[ { "docid": "a3e0f03c34a91bdd310a59578abeda95", "score": "0.0", "text": "public final int getLayout() {\n return 2130970730;\n }", "title": "" } ]
[ { "docid": "0b06f1c2066a7ed1df417a1383204e17", "score": "0.73777145", "text": "Internal internal();", "title": "" }, { "docid": "863d3a7ffbf5a09e2fddc82948f7fb9e", "score": "0.683344", "text": "private Methods() {}", "title": "" }, { "docid": "a55a150557f80abcbd733ee3162b...
8f501edd080d31ad4a822340cce4f38e
Auto generated getter method
[ { "docid": "2892f164b363b0fe6bc866773fc289d4", "score": "0.0", "text": "public java.lang.String getU_monitored_categorization(){\n return localU_monitored_categorization;\n }", "title": "" } ]
[ { "docid": "2b673b4ccd5a74b9cff0dfb440cc6fd8", "score": "0.7604328", "text": "public T get() {\n }", "title": "" }, { "docid": "8d5e1e149b54434e5ef011301af95400", "score": "0.7425833", "text": "public Object get();", "title": "" }, { "docid": "cae7dd0c3ea172c79f53946f56f...
c7a203d1294d2501a41cfd37ea7ee371
Returns the password to the certificate.
[ { "docid": "34e0fdd7cb32eb9aac00382d9892dae1", "score": "0.9069284", "text": "String getCertificatePassword();", "title": "" } ]
[ { "docid": "0e2014a85e30fc72962fcbd6186c2b7b", "score": "0.7454157", "text": "public String getTruststorePassword();", "title": "" }, { "docid": "480e9208151991a1ade05f9ded32ca60", "score": "0.72491103", "text": "java.lang.String getPassword();", "title": "" }, { "docid":...
1c2ffb76df1f89367782b56b16d2a474
Get the extension of the files that the loader will support.
[ { "docid": "d2b912de5240b622cc1de6fd35561bd4", "score": "0.7310017", "text": "protected abstract String getExtension();", "title": "" } ]
[ { "docid": "309de073eda24c2cfefeeff8a490b1aa", "score": "0.7807128", "text": "public java.lang.String getExtension();", "title": "" }, { "docid": "629fd99dbbc90933d564aef1f5733560", "score": "0.76714516", "text": "public String getExtension();", "title": "" }, { "docid": ...
5cf96e34bc7f34b26687c090e200c573
Opens a window the select the BlendType to export using.
[ { "docid": "667a6b6d6c5849fef605c8ab888f5832", "score": "0.5753447", "text": "private void exportActionListener(ActionEvent e) {\n try {\n checkIfImageLoaded();\n } catch (IllegalStateException err) {\n return;\n }\n Object blendType = JOptionPane.showInputDialog(\n this, \"...
[ { "docid": "506788b5f1249f164fa2cc2919e63ec5", "score": "0.5976135", "text": "public GraphicFormat selectGraphicFormatFromWindow() {\n\n\t\tJDialog dialog = new JDialog();\n\n\t\tdialog.setContentPane(getChoicePanel(dialog));\n\t\tdialog.setModal(true);\n\t\tdialog.pack();\n\t\tdialog.setLocation((Toolk...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "9f70c1b2d06a7b77b7d3da9ca4fbb253", "score": "0.0", "text": "@Override\r\n\t\t\tpublic Object doInHibernate(Session session)\r\n\t\t\t\t\tthrows HibernateException, SQLException {\n\t\t\t\tString ejbql = \"from Startups s where s.startupsLeader.userId = :leaderId\";\r\n\t\t\t\treturn (ArrayLi...
[ { "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...
55a07dd662c5e91302971b42734ffe00
Click the arrow toggle icon to expose/hide this views Left hand side Tree pane. Must be in a Studio view to use. When used, the left hand side Tree pane will be either exposed or hidden.
[ { "docid": "971baaa2febbdcc03ee24490bdbed770", "score": "0.6515669", "text": "public void toggleTreePane() throws Exception {\n\t\tgetControl(\"toggleTreePane\").click();\n\t}", "title": "" } ]
[ { "docid": "ccf8b4b27126a792de6b42e374c17ada", "score": "0.6300605", "text": "void onLeftViewHidden();", "title": "" }, { "docid": "5c984120f8d85f2a82d0e4d89d98c282", "score": "0.6300532", "text": "public void showOrHideLeftView() {\n if (!enableDrag) {\n return;\n ...
e0cc77f4014146a34935419008853d32
Updates the duck, moves it
[ { "docid": "d1b2311b5ba6389f81821c1e949edec5", "score": "0.0", "text": "@Override\n public void update(float delta_time, List<Entity> entities) {\n\n // Move the duck\n\n float delta_x = 0;\n\n switch (direction) {\n case RIGHT:\n delta_x = speed * delta...
[ { "docid": "cb28cae4897c6fa2ef8cd53931c6e319", "score": "0.6342599", "text": "@Override\r\n\tpublic void move() {\n\t\t\r\n\t}", "title": "" }, { "docid": "177aceb4ae957a6314a2a34048f975c4", "score": "0.6300144", "text": "public void promoteToKing(){\n this.piece.promoteToKing...
b2f7d4dbee76d936acdc71294b7d5cd5
Remove from this collection all members of the given collection
[ { "docid": "4290290076ec2b04e8740e866154b1a1", "score": "0.56245303", "text": "public boolean removeAll(Collection c) {\n if (c==null || c.isEmpty() || size()==0 ) return false;\n\n boolean r= false;\n for (Iterator i=c.iterator(); i.hasNext();) {\n r= remove(i.next()) || r;\n }\n re...
[ { "docid": "5520b99706db5104c8d7529e68febabb", "score": "0.7211779", "text": "void removeAll(Collection c);", "title": "" }, { "docid": "0f8105bc09a5d7aa1a8192e49a4becd7", "score": "0.7162413", "text": "public void removeAll(Coll<T> c);", "title": "" }, { "docid": "e20556...
e3a5ebe36f35818fff0cd5c8a7caba3f
Creates a new test.
[ { "docid": "12601a4904b74ae903074316c97dedc3", "score": "0.0", "text": "public TypeCheckerTest(String name) {\n\t\tsuper(name);\n\t}", "title": "" } ]
[ { "docid": "a5b9f3178d424d8318af47eb4386e0c1", "score": "0.7402185", "text": "Test createTest();", "title": "" }, { "docid": "915cc551a48d443e61b669040a3eec10", "score": "0.7389435", "text": "@Test\n\tpublic void testcreate() {\n\t\tCreate creat = new Create(\"trump\");\n\t}", "t...
18ed603586636007e1bfd5bf88a1554d
Crea un buescador en un desierto dando su nombre
[ { "docid": "da8114b890bae60adee030ab19b442b5", "score": "0.57762504", "text": "public Egiptologo(Desierto desierto, String nombre,int x, int y) {\n this.nombre = nombre;\n this.desierto=desierto;\n posX=x;\n posY=y;\n color=Color.BLACK;\n enTumba=desierto.estaEn...
[ { "docid": "563b4837f6b22551c4b8874ac2cadcc5", "score": "0.68511856", "text": "public Requerido createRequerido(String nome);", "title": "" }, { "docid": "8833bf2c1c82e3959d80948967899c8e", "score": "0.6563376", "text": "public void criarBordaPainel(String nomeUsuario) {\r\n B...
bd1ce30feb67f1707a1ca7ea0f925f4d
The main class which launches the GUI.
[ { "docid": "b55d51c7342cd975c312138dd3ac499c", "score": "0.0", "text": "public static void main(String args[]){\n\t\tChessBoard c = new ChessBoard();\n\t\t\n\t}", "title": "" } ]
[ { "docid": "c7bf2881fc052bc7d98fb2508ac545f9", "score": "0.81380695", "text": "public static void main(String []args) {\n\t\tnew GUI();\n\t}", "title": "" }, { "docid": "af9e045a98cd7cb1f2a833a9e1c47174", "score": "0.78331447", "text": "public static void Main(String[] args) {\n ...
74b2fd9bd3f9559457ec15eac0194913
Gets the isReviewedIndustry value for this AccountCleanInfo.
[ { "docid": "f9b21e009993fc2889ede3e9100c7ec6", "score": "0.81989634", "text": "public java.lang.Boolean getIsReviewedIndustry() {\n return isReviewedIndustry;\n }", "title": "" } ]
[ { "docid": "6e49ff14c4572ec73932c8d86757e93e", "score": "0.6298428", "text": "public void setIsReviewedIndustry(java.lang.Boolean isReviewedIndustry) {\n this.isReviewedIndustry = isReviewedIndustry;\n }", "title": "" }, { "docid": "8afc0490959658f876616a28f5fcbd52", "score": "...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "8ebca28bf218301fff8e0e94b4cf2c8e", "score": "0.0", "text": "@Override\r\n\tpublic String generateTicket(CustomerDTO cust) {\n\t\treturn null;\r\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": "" ...
d433439f2941955862c9f4551e7131d8
Sets the title of the "Select Category" button (nonlocalized) and the selected category key to the first of any suggested categories provided categories were suggested for the GTIN and no category has yet been selected.
[ { "docid": "ef897a0037bcac3207decfb20beaf5c6", "score": "0.74504554", "text": "private void setSuggestedCategory() {\n if (selectedCategoryKey != null) {\n return;\n }\n if (suggestedCategories != null && suggestedCategories.length != 0) {\n selectedCategoryKey...
[ { "docid": "2d71b086c84101f308c88902975ed599", "score": "0.76175076", "text": "private void setCategoryButtonTextFromKey() {\n setSuggestedCategory();\n if (selectedCategoryKey != null && selectCategory != null) {\n String selectedCategoryName = CategoryListItem.getName(selected...
039f08495ac1372c8485e0545f30bc91
Test that writing a with ProtoOutputStream matches, and can be read by standard proto.
[ { "docid": "cbb65cc1f7f88374640e084702398fb7", "score": "0.0", "text": "public void testPackedCompat() throws Exception {\n testPackedCompat(new float[] {});\n testPackedCompat(new float[] { 0, 1, -1234.432f, 42.42f,\n Float.MIN_NORMAL, Float.MIN_VALUE, Float.NEGATIVE_IN...
[ { "docid": "c4b80d73fb89e99631fc22f5c356deb8", "score": "0.6319389", "text": "public void testWrite(int chunkSize) throws Exception {\n final ProtoOutputStream po = new ProtoOutputStream(chunkSize);\n final long fieldFlags = ProtoOutputStream.FIELD_COUNT_SINGLE | ProtoOutputStream.FIELD_TY...
5d5242bb018a3ab08507536991ef0406
Gets the value of the 'windowId' field.
[ { "docid": "4ebf011aa49bb760be51d4464218c3b7", "score": "0.80125684", "text": "public java.lang.CharSequence getWindowId() {\n return windowId;\n }", "title": "" } ]
[ { "docid": "0444c6b5cdd072a0203fcedd16ef578c", "score": "0.8037894", "text": "public java.lang.CharSequence getWindowId() {\n return windowId;\n }", "title": "" }, { "docid": "273696f44eae0d40c76cac2257ec0506", "score": "0.648006", "text": "public void setWindowId(java.lang.CharS...
201b2fb7d2d83aa0ec34efe3b3952257
Begriff nach dem anstelle von "SearchValue" gesucht werden kann .dstore.values.StringValue matching_value = 10003;
[ { "docid": "c2363b0db37cc16be115a5063430cd4e", "score": "0.7309136", "text": "io.dstore.values.StringValueOrBuilder getMatchingValueOrBuilder();", "title": "" } ]
[ { "docid": "f494a1656c235240b39f7a778045d734", "score": "0.8497862", "text": "io.dstore.values.StringValue getMatchingValue();", "title": "" }, { "docid": "f494a1656c235240b39f7a778045d734", "score": "0.8497862", "text": "io.dstore.values.StringValue getMatchingValue();", "title"...
677a4cba01c346188603b526b636d187
Much safer than assign null values to thread local variable
[ { "docid": "6772bc9353a438e2ecbc9b07265eceb3", "score": "0.0", "text": "static void unLoad() {\n\t\tdriver.remove();\n\t}", "title": "" } ]
[ { "docid": "f4303f0d514a14df8ddef76568652f10", "score": "0.5740261", "text": "private void nullTemps()\n {\n tempCost = null;\n tempName = null;\n }", "title": "" }, { "docid": "5bc94c71ba58232f397b7a3056e14bc9", "score": "0.56672597", "text": "private static <T> ...
79016cbd6e45356cf256744050c84256
Listener en caso de que el video se redimensione y posicionar de nuevo el media controller
[ { "docid": "042023f9c98e61d280cb071ee72e7b2b", "score": "0.7484818", "text": "@Override\n public void onVideoSizeChanged(MediaPlayer mediaPlayer, int i, int i1) {\n mc = new MediaController(getActivity());\n //IMPORTANTE asignar el media c...
[ { "docid": "e2a732ab5c3d540694c20d86db57505c", "score": "0.7037758", "text": "@Override\n public void onVideoSizeChanged(MediaPlayer mp, int width, int height) {\n mediaController = new MediaController(VideoPreview.this);\n mediaController...
1a592b077f9430aab71cf254a4917395
/ / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / ...
[ { "docid": "a5bc4d6b6856b1a1f1edfa5be9ce72a0", "score": "0.0", "text": "public ByteOrder order()\n/* */ {\n/* 596 */ return ByteOrder.nativeOrder();\n/* */ }", "title": "" } ]
[ { "docid": "459c82a24b89217b00aee65a51ad729a", "score": "0.5041462", "text": "@Test\n public void test004() throws Throwable {\n String string0 = StringUtils.rightPad((String) null, 26, '.');\n int int0 = StringUtils.lastIndexOfIgnoreCase((CharSequence) null, (CharSequence) null, 26);\n ...
1648983dfc33c49a5a0c3d288dfb5816
Constructor allowing you to set initialCapacity
[ { "docid": "e910b836b7a1f1ffe44d30396ed8e678", "score": "0.63708425", "text": "public ExVector(int initialCapacity, int capacityIncrement) {\n\t\tsuper(initialCapacity, capacityIncrement);\n\t}", "title": "" } ]
[ { "docid": "5f65dbeb67d296476d5a3bb218411b6b", "score": "0.811685", "text": "public void init (int initialCapacity, int maxCapacity, float loadFactor) { throw new RuntimeException(); }", "title": "" }, { "docid": "6b18cad83ddef2c5a8f4cd0b402cf25f", "score": "0.78547466", "text": "p...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "1022a04999bed4aedfdfd45685a24341", "score": "0.0", "text": "@Override\n\tpublic void mouseClicked(MouseEvent e) {\n\t\t\n\t\tif (e.getClickCount() == 2)\n\t\t{\n\t\t\tif(MainFrame.getInstance().getPmp().getSelProcedures().contains(MainFrame.getInstance().getPmp().getListProcedures().getSelec...
[ { "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...
c045fa82cc7d1f39f89a78f86fdafbcb
Overridden method that gets called when the user chooses a new option in the item list.
[ { "docid": "e69b3c5d4b5776c059ecc9ddd01209b1", "score": "0.0", "text": "public void itemStateChanged(ItemEvent evt) {\n CardLayout cl = (CardLayout)(cardsPanel.getLayout());\n cl.show(cardsPanel, (String)evt.getItem());\n }", "title": "" } ]
[ { "docid": "d2af9f20757c0561cf9149ee949e0e38", "score": "0.6528137", "text": "@Override\r\n protected void onAddItem()\r\n {\r\n Log.d(ListNotificationsActivity.class.getName(), \"onAddItem()\");\r\n\r\n // start details activity to create new item\r\n Intent intent = new Inte...
614fee32a09dabfe89bcf4be79a4f34d
Sets the value of the weight property.
[ { "docid": "4f015eee48907f13a79752f1a3c5b61d", "score": "0.84106857", "text": "public void setWeight(double value) {\n this.weight = value;\n }", "title": "" } ]
[ { "docid": "e6a46203a4e7bce608237913d5142ba6", "score": "0.87380534", "text": "public void setWeight(double weight);", "title": "" }, { "docid": "a68cb641a22d0b2131b5f6b35d2cb8ca", "score": "0.8517322", "text": "public void setWeight(double weight) {\n this.weight = weight;\n ...
9eec694c25aa9378fe34eaf52a2b5fa4
required .network.message.Result result = 1;
[ { "docid": "85629555dfe131b9a24231e4e820cf34", "score": "0.0", "text": "public Builder setResult(network.message.ResultInfo.Result value) {\n if (value == null) {\n throw new NullPointerException();\n }\n bitField0_ |= 0x00000001;\n result_ = value;\n onChange...
[ { "docid": "772d11537facf0d1e18ad3c0c825efa2", "score": "0.8812912", "text": "network.message.ResultInfo.Result getResult();", "title": "" }, { "docid": "772d11537facf0d1e18ad3c0c825efa2", "score": "0.8812912", "text": "network.message.ResultInfo.Result getResult();", "title": ""...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "9279b272ff1ba3fb5c9124b0df0f2692", "score": "0.0", "text": "@Override\r\n\tpublic void doMessage(MinaMessage msg, IConnect session) throws Exception {\n\t\tRoleListResponse resp = RoleListResponse.parseFrom(msg.getBody());\r\n\t\tif (resp.getDataList() != null && resp.getDataCount() > 0) {\r...
[ { "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": "" ...
03e839157589f87dc5ec3375c81f17d0
Return a reference to the scoped data bean.
[ { "docid": "72425179818c2a4c19f69f06f8ed8eaf", "score": "0.0", "text": "protected RequestBean1 getRequestBean1() {\n return (RequestBean1) getBean(\"RequestBean1\");\n }", "title": "" } ]
[ { "docid": "72354f528a2d83a05c2c0975efc1311a", "score": "0.68318236", "text": "public DataScope getDataScope();", "title": "" }, { "docid": "f471d7bec99cd31f63e478e3a9719215", "score": "0.5994109", "text": "public ContextBean enclosingScope() {\n\t\treturn enclosingScope;\n\t}", ...
70bd0ec19e3bfe9072ac532ae19b3bab
handle a HTTP GET request
[ { "docid": "ca27ecebe248bdc46194c8afb75c9567", "score": "0.0", "text": "private static String handleGET(HttpExchange request) throws IOException, NumberFormatException {\n Map<String, String> parms = getQueryParameters(request);\n\n MathCalc mi = new MathCalc();\n\n String operator,...
[ { "docid": "37a8dc56cf554a77cf9cc492a409b4a0", "score": "0.709186", "text": "@Override\r\n\tprotected void doGet(HttpServletRequest req, HttpServletResponse resp)\r\n\t\t\tthrows ServletException, IOException {\n\t\tdoQuery(req, resp);\r\n\t}", "title": "" }, { "docid": "7c23b9e994d985c665d0...
af2da9cc39ac1fa0b05e6d29e6d88674
Tests running a single job that fails on the Jsr237WorkScheduler
[ { "docid": "e81c6d9bddd66c13a825e863b86da2fc", "score": "0.8592205", "text": "@Test\n public void testSingleFailingJob() {\n // Create the work and register it\n JSR237MyFailingRunnable fail = new JSR237MyFailingRunnable();\n JSR237MyRunnerListener listener = new JSR237MyRunnerLi...
[ { "docid": "759a13f40649f1da4b43c3f232c26e7c", "score": "0.7235288", "text": "@Test\n public void testMultipleJobsSomeFail() {\n // Create the work and register it\n JSR237MyRunnable fast1 = new JSR237MyRunnable(5);\n JSR237MyRunnable fast2 = new JSR237MyRunnable(10);\n JS...
b690651137adf26fd867a4f7b9213337
Demo code for calling constructor using this.
[ { "docid": "90b3229082ff016479980f36deac7b20", "score": "0.0", "text": "public static void main(String args[]) {\n\t\tRectangle r1 = new Rectangle();\n\t\tr1.display();\n\t\tRectangle r2 = new Rectangle(5, 10, 5, 10);\n\t\tr2.display();\n\t}", "title": "" } ]
[ { "docid": "a60a397495fdbb66a0e8eba68f19f2dd", "score": "0.75380343", "text": "public Test1() {\n\t\tthis(10);\n\t\tSystem.out.println(\"0-arg constructor\");\n\t}", "title": "" }, { "docid": "76176f303bb636b0234429d5c10ef8fb", "score": "0.72473663", "text": "public ConstructorDemo()...
2ae38e5289e6bb82fe99cb2eb4c818ad
optional string row_state = 5;
[ { "docid": "4a8aa4f5709b01aad5024a9266bdbbf7", "score": "0.6668395", "text": "public Builder setRowState(\n java.lang.String value) {\n if (value == null) {\n throw new NullPointerException();\n }\n bitField0_ |= 0x00000010;\n rowState_ = value;\n onChanged();\n ...
[ { "docid": "5c6950339f4acbfb34dc9c0856338c4c", "score": "0.8100495", "text": "java.lang.String getRowState();", "title": "" }, { "docid": "5c6950339f4acbfb34dc9c0856338c4c", "score": "0.8100495", "text": "java.lang.String getRowState();", "title": "" }, { "docid": "5c6950...
7fbd931add74d2682b1ea195d6ffa998
fetch relation based on id
[ { "docid": "1af0d0af31b82ef51a2c9facd3f6d5a1", "score": "0.6015096", "text": "public String getRelation(int id)\n\t{\n\t\tSQLiteDatabase s=getReadableDatabase();\n\t\tCursor found=s.rawQuery(\"select * from \"+Relation+\" where _id= \"+id, null);\n\t\tif(found!=null&&found.moveToFirst())\n\t\t{\n\t\t\tS...
[ { "docid": "2d291bbf909784926125382e0eac1942", "score": "0.7120728", "text": "UtRelation selectByPrimaryKey(Integer relationId);", "title": "" }, { "docid": "1179ad27b6d2f70c7614fa244a7bd7d1", "score": "0.6740387", "text": "TagRelation selectByPrimaryKey(Integer id);", "title": "...
c706db0a24b58ad45bc4904ff16736fb
Constructor. Recibe el contexto.
[ { "docid": "6e4d13c69bea154563375a4d99e3e813", "score": "0.0", "text": "public Helper(Context ctx) {\n // Se llama al constructor del padre, que es quien realmente crea o\n // actualiza la versión de BD si es necesario.\n super(ctx, Contract.BDD_NAME, null, Contract.BDD_VERSION);\n ...
[ { "docid": "ff772ea6787443ab7b8f09587584f17d", "score": "0.7622587", "text": "public Context() {\n\n }", "title": "" }, { "docid": "a47ff14648de4d89254d38436f3b8af3", "score": "0.73815095", "text": "public SimpleContext() {\r\n this(MgnlContext.getInstance()); \r\n }", ...
c4eed8e0967069a748a86022d930b74f
String url = " driver.get(url);
[ { "docid": "a2fe9953ab0c865dfc47ad58328518bd", "score": "0.0", "text": "@Given(\"I am on the calendarview page\")\n\tpublic void i_am_on_the_calendarview_page() {\n\t\t\n\n\t}", "title": "" } ]
[ { "docid": "5448caf4b35276b5fa8f5865916e7afd", "score": "0.7118806", "text": "@Given(\"url {string}\")\r\n\t\r\n\tpublic void url(String string) {\n\t\tString chromePath=\"C:\\\\Users\\\\a07208trng_b4a.04.26\\\\Desktop\\\\selenium\\\\jars\\\\chromedriver_win32 (1)\\\\chromedriver.exe\";\r\n\t\tSystem.se...
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": "b5b29ab39056b91f873570ffdf3d9793", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jLabel4 = new javax.swing.JLabel();\n jLabel3...
[ { "docid": "98e3f367d20a60eb829a633a5ff465e6", "score": "0.7292581", "text": "public LeTanForm() {\n initComponents();\n }", "title": "" }, { "docid": "2901c5027f800c57f8efe188557aec1f", "score": "0.7289971", "text": "public MainForm() {\n initComponents();\n }", ...
0c046312d846c6377d4c26d201fb809f
Returns the total length of the message in number of bytes.
[ { "docid": "d72c2144c0a7275a982c909b7dc03700", "score": "0.7501015", "text": "public int length() {\n return (cch == null) ? 0: cch.messageLength;\n }", "title": "" } ]
[ { "docid": "8f109aea9270cf00ec0632c61f8a9089", "score": "0.8289195", "text": "public int getMsgLength() {\n // ByteBuffer b = ByteBuffer.wrap(msgLength);\n // return b.getInt();\n return msgLength;\n }", "title": "" }, { "docid": "a93becd6e834edda64d207fcb543e556", ...
0c5dda0095cd3eec32bd2726dd96da6e
we can't control what order these two obs groups appear in, but we should make sure that the proper text answer is always linked to the proper date answer the "Dogs" entry should be linked to the 01/02/2003 date, while the "Cats" entry should be linked to the null date
[ { "docid": "8035144d2714ce3683e83d40e97f5dcb", "score": "0.0", "text": "@Override\n\t\t\t\tpublic void testViewingEncounter(Encounter encounter, String html) {\n\t\t\t\t\tTestUtil.assertFuzzyContains(\"Cats Allergy Date \\\\d: ________\", html);\n\t\t\t\t\tTestUtil.assertFuzzyContains(\"Dogs Allergy Dat...
[ { "docid": "7c623ec0662a85545b317909a811b094", "score": "0.6013554", "text": "@Test\n\tpublic void viewIdenticalObsGroups() throws Exception {\n\t\tfor (int rep = 1; rep < 30; rep++) {\n\t\t\tnew RegressionTestHelper() {\n\t\t\t\t\n\t\t\t\t@Override\n\t\t\t\tpublic String getFormName() {\n\t\t\t\t\tretu...
ff5fb073a4c3ff1a48210b509697aecb
Override the onCreate method in BaseAppCompatActivity with Activityspecific code
[ { "docid": "bcd8a6f1aeb5fbc9141610f10ff9bc9a", "score": "0.0", "text": "@Override\n public void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n\n // Get the user id which this screen is representing\n if (savedInstanceState == null) {\n Bu...
[ { "docid": "60d7ed9e99792f9ebb32dc0c0e772cc6", "score": "0.7715956", "text": "protected void onBaseActivityCreate(Bundle savedInstanceState) {\n\n }", "title": "" }, { "docid": "a1cd1726df2a7772da40d9c8ff1472f9", "score": "0.7440283", "text": "protected abstract void onActivityCre...
0794ae1b63706f18213bba3edd9d15da
Specifies a character string with a maximum length of 140 characters. Usage: If the payment is recurring then the transaction identifier of the previous payment occurrence so that the ASPSP can verify that the PISP, amount and the payee are the same as the previous occurrence.
[ { "docid": "4756559e39fb96e18196a616918ff178", "score": "0.0", "text": "@JsonProperty(\"ReferencePaymentOrderId\")\n public String getReferencePaymentOrderId() {\n return referencePaymentOrderId;\n }", "title": "" } ]
[ { "docid": "5358af9b159997a831a0039857265d24", "score": "0.57809544", "text": "public void setChar14(java.lang.String param){\n \n if ( (java.lang.String.valueOf(param).length() <= 14) ) {\n ...
4a0dbbc3187c3b203e95f9df5b290643
method to return the module title
[ { "docid": "73f4a2552d504bf9bc3ff861a0888166", "score": "0.84993637", "text": "public String getTitle() {\r\n\r\n\t\treturn moduleTitle;\r\n\t}", "title": "" } ]
[ { "docid": "b4620f51042d96cd31d5d3cf78b0ae5f", "score": "0.7594761", "text": "@Override\n public String getName() {\n return module.moduleName();\n }", "title": "" }, { "docid": "a4ec2364f77c5897faa1371d64c5a0a7", "score": "0.75518835", "text": "public static String getT...
e050894af786967c83be183b0870b939
An entity which lives in a world of light. The goal of this class is to stretch the word "luminous" as much as possible. It's also to provide an interface for any object which can cast or be under a shadow.
[ { "docid": "c87c625b581337c969493c2078187154", "score": "0.79505575", "text": "public interface LuminousEntity extends Entity, Comparable<LuminousEntity> {\n\n /**\n * The depth of this entity; used to calculate whether shadows should be\n * cast on or under it.\n *\n * @return\n ...
[ { "docid": "3af6e6b653271c727d41fd8f88cc30bc", "score": "0.66813314", "text": "public interface Light {\n\n float getStrength();\n\n Position getPosition();\n\n}", "title": "" }, { "docid": "bbc6101b6ad5b0665b34c3f40c066d6d", "score": "0.61157566", "text": "public interface ILi...
5b835cfe554bf1f78da60725fbfc4791
Group Folder (Group URI) Services Returns the URL to list the group folders for a group.
[ { "docid": "74fd321190319a9921902443a787bb43", "score": "0.78530943", "text": "@Requires(minVersion = 56012)\n public static String toListGroupFolders(String group) {\n return \"/groups/\" + prefixGroup(group) + \"/groupfolders\";\n }", "title": "" } ]
[ { "docid": "58a17e2c00a1c839ebbb65ba7c6a724f", "score": "0.7528681", "text": "@Requires(minVersion = 56012)\n public static String toGetGroupFolderForURL2(String group) {\n return \"/groups/\" + prefixGroup(group) + \"/groupfolders/forurl\";\n }", "title": "" }, { "docid": "ff9660c1a0aa...
51c42a5e8a30f588f561e998beaf4a02
This only gets invoked when it receives the first request Multiple instances get created
[ { "docid": "467f41b0260f354e8ad1b22a7978924c", "score": "0.0", "text": "public YurlResource() {\n\t\t\t// We can't put the auto downloader in main()\n\t\t\t// then either it will be called every time the cron job is executed,\n\t\t\t// or not until the server terminates unexceptionally (which never happ...
[ { "docid": "2a959f5e83eb98f6a222c5205eb5e5fb", "score": "0.5754981", "text": "private singleton(Context context){\n cont=context;\n request=returnRequest();\n\n }", "title": "" }, { "docid": "48fab3045b052c39cf8a883987d90c8e", "score": "0.569609", "text": "public voi...
cea528f85f4d2e258a8dcf28e3d98001
Helper method to build the Prevalidate request body.
[ { "docid": "da90ef6f68c628e81985fc2d500f7348", "score": "0.6679086", "text": "public static String buildPrevalidateRequestBody( String username, String password ) {\n\t\tStringWriter sw = new StringWriter();\n\t\tPrintWriter pw = new PrintWriter( sw );\n\t\tpw.println(\"{\");\n\t\tpw.println(\"\\\"usern...
[ { "docid": "a997c93a8f921300780b39d9fdaa884f", "score": "0.5949426", "text": "public static String buildUsernameForgotRequestBody() {\n\t\tStringWriter sw = new StringWriter();\n\t\tPrintWriter pw = new PrintWriter( sw );\n\t\tpw.println(\"{\");\n\t\tpw.println(\" \\\"postalCode\\\":\\\"92131\\\"\");...
ba4e135a1f88dab5283bfc62354e3cc1
Tries to read element from XML.The reader.
[ { "docid": "de007ee7d696d150c063d8b1978dcaf5", "score": "0.566673", "text": "@Override\n public boolean tryReadElementFromXml(EwsServiceXmlReader reader)\n throws Exception {\n if (reader.getLocalName().equals(XmlElementNames.To)) {\n String targetKind = reader\n .readAttributeVal...
[ { "docid": "c3a771dd1380a6b09d7732d0ffe711a9", "score": "0.6597389", "text": "public IXMLReader getReader();", "title": "" }, { "docid": "90adbe12d7688e13295f7760eba88f77", "score": "0.6395697", "text": "private XMLElement readElement(XMLStreamReader streamReader, XMLElement element)...
9eb41d0dba4af2b1e9cd4a0adcc26771
todo: show ride request provider
[ { "docid": "c4b50a0e8ece12e37ec7b6db64721a3d", "score": "0.53203344", "text": "public void onProfileClicked() {\n checkForRide();\n }", "title": "" } ]
[ { "docid": "7279861bf320c2a6d6e14c7649f0b7de", "score": "0.63517237", "text": "public void requestRides(View view) {\n Intent intent = new Intent(this, RequestRideActivity.class);\n startActivity(intent);\n }", "title": "" }, { "docid": "b43a6f75ec98ea8b4e8a780a16975355", ...
85ea5857e5270823edc0441db21fce1b
Populates the user cache with all Wasabi users
[ { "docid": "962a9774c984abda1f62931b3ab335b9", "score": "0.7057791", "text": "public void populateUserCache(CachedUserDirectory userDirectory) throws AuthenticationException;", "title": "" } ]
[ { "docid": "3424ebd4a8fc4bbd3753f663204ef825", "score": "0.7233364", "text": "private void fillUsers() {\n list.clear();\n Iterable<User> c = this.getUserService().getUserRepository().findAll();\n Iterator<User> cu = c.iterator();\n while (cu.hasNext()) {\n list.ad...
8ebba143820a1ff5fbdae4ccfa0bca4c
Getter for the URI of the volume being migrated.
[ { "docid": "036b491cdae1d98f7ae5d682d50bad41", "score": "0.6451235", "text": "@RelationIndex(cf = \"RelationIndex\", type = Volume.class)\n @Name(\"volume\")\n public URI getVolume() {\n return _volume;\n }", "title": "" } ]
[ { "docid": "2619cccbfa45594558608c2b6313348f", "score": "0.7242347", "text": "public URI getCurrentUnManagedVolumeUri();", "title": "" }, { "docid": "8496fbc23d674e475dc031d96175b61b", "score": "0.6851284", "text": "private String getLocalUri() {\n long uploadId = getLong(...
1b544633c2886b0d8ef18c775c81cd06
/ renamed from: b
[ { "docid": "3d1ef950d0d5a20eb09549956806cdb4", "score": "0.0", "text": "public final void mo232b(ahf ahf) {\n }", "title": "" } ]
[ { "docid": "181c64ca98d18a777ef722210022db02", "score": "0.648436", "text": "public abstract T b(B b2);", "title": "" }, { "docid": "7c7c2a4f2eea5bd9b0cfc4a996b83139", "score": "0.6414758", "text": "@Override\r\n\t\tpublic void operatorB() {\n\t\t\t\r\n\t\t}", "title": "" }, ...
2d610f01bbf1a6674a42ce7fed0e8801
Returns the timeout duration
[ { "docid": "811f4f510e89a6ab175a0dcf7765bcdd", "score": "0.79884696", "text": "public int getTimeout() {\n return timeout;\n }", "title": "" } ]
[ { "docid": "2f4c3a41adaef6674c4d10d29e97202b", "score": "0.8053978", "text": "public int getTimeout();", "title": "" }, { "docid": "32a1322fca8b297c0283b9137f04ac69", "score": "0.80367315", "text": "public int getTimeout()\n\t{\n\t\treturn timeout;\n\t}", "title": "" }, { ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "04ec228dff717bd8ed8e4eaa66a9bd7c", "score": "0.0", "text": "@Override\n\tpublic void info(Object arg0, Throwable arg1) {\n\n\t}", "title": "" } ]
[ { "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...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "b722b1d835afe15f588d81fda8a90d4c", "score": "0.0", "text": "@Override\n\t\t\tpublic void buffering(MediaPlayer mediaPlayer, float newCache) {\n\n\t\t\t}", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.68399656", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "0c69424878be03e50f19e2ca61ef640b", "score": "0.68002176", "text": "@Override\r\n\tpublic void leggi() {\n\t\t\r\n\t}", "ti...
9bb65cee87b3c8fe22fda18874e540b0
Gets the value of the indebtedbalance property.
[ { "docid": "0188d2b9f20ba550d62613155e869388", "score": "0.8442264", "text": "public float getIndebtedbalance() {\n return indebtedbalance;\n }", "title": "" } ]
[ { "docid": "af646cf26b3e447bed63b38c3e814541", "score": "0.78649443", "text": "public int getBalance() {\r\n return balance;\r\n }", "title": "" }, { "docid": "c644f619165e440acb35f2a50b1ed8f6", "score": "0.784051", "text": "public String getBalance() {\r\n\t\treturn this.balance...
cc2abf4ea1875fe427f0d57fe6d51ada
Constructs a JSSourceFile from a JavaScript file.
[ { "docid": "13d8fa57481e485614f71c8121878579", "score": "0.7027842", "text": "static JSSourceFile fromFile(File file) throws IOException {\n\t\ttry (FileInputStream stream = new FileInputStream(file)) {\n\t\t\ttry (FileChannel fc = stream.getChannel()) {\n\t\t\t\tMappedByteBuffer bb = fc.map(FileChannel...
[ { "docid": "dcf7b6472da662b828c7f64614093543", "score": "0.6361571", "text": "static JSSourceFile fromCode(String source, EncodedFileName fileName) {\n\t\treturn JSSourceFile.fromCode(fileName.toString(), source);\n\t}", "title": "" }, { "docid": "10b98091b552144c5b31258e88615df8", "scor...
577f2f91b4ba829e4053bfff3920cc53
Returns a time based on Date, formatted according to the pattern.
[ { "docid": "191f7dad43a8c9c38d8d7fee799662cc", "score": "0.6981198", "text": "public static String getTimeForDate(final Date date, final String pattern)\n\t{\n\t\treturn getSimpleDateFormatter(pattern).format(date);\n\t}", "title": "" } ]
[ { "docid": "f2c6864b6ce110e1453846adf17da311", "score": "0.64687186", "text": "public static String formatByDateTimePattern(Date date) {\n return format(date, DATETIME_PATTERN);\n }", "title": "" }, { "docid": "46fb6cb50ad02a51be4740be88c90221", "score": "0.6425431", "text"...
91bec007ac468ae767271c17f657da40
Breaking the Portal leaves water if underwater
[ { "docid": "f4662225027d9439a2f0dc763e97a51c", "score": "0.0", "text": "private void removePart(final Level world, final BlockPos pos, final BlockState state)\n {\n final FluidState fluidState = world.getFluidState(pos);\n if (fluidState.getType() == Fluids.WATER) world.setBlock(pos, fl...
[ { "docid": "20b93a9859c8fba5049e771bd942765b", "score": "0.6642292", "text": "public void stopFlowOfWater() {\n\t\tboiler.stopHeatingWater();\n\t}", "title": "" }, { "docid": "61d063cf60875d8d3c22b673c0ae7ea2", "score": "0.66403854", "text": "@Override\n public boolean isConscious...
661d8f800d624a28165c83467a439184
Construct an Abstract descriptor to hold an agent action of the proper type, e.g. SELL, BUY....
[ { "docid": "7246736a2788baf597dcd62f1ec057d9", "score": "0.63925815", "text": "public AbsAgentAction(String typeName) {\n\t\tsuper(typeName);\n\t}", "title": "" } ]
[ { "docid": "6b59239945d76b7acd173ddf405bb066", "score": "0.6175469", "text": "Action createAction();", "title": "" }, { "docid": "a832daf6b849b101466c4c71c8a7c917", "score": "0.61149734", "text": "Agent createAgent();", "title": "" }, { "docid": "0d39c44f2072e243e5d026940...
564b8b25ed5ce55107e9154e58361ef2
Returns the code assist processor for the content type of the specified document position.
[ { "docid": "1bc65bc3770825e7d89c689bee18b99d", "score": "0.64658064", "text": "public IContentAssistProcessor getProcessor(ITextViewer viewer, int offset)\n\t{\n\t\ttry\n\t\t{\n\n\t\t\tIDocument document = viewer.getDocument();\n\t\t\tString type = TextUtilities.getContentType(document, getDocumentParti...
[ { "docid": "6d19b9f4b31ad1ea2631b53252866ed2", "score": "0.6650576", "text": "private IContentAssistProcessor getProcessor(IContentAssistSubjectControl contentAssistSubjectControl, int offset)\n\t{\n\t\ttry\n\t\t{\n\n\t\t\tIDocument document = contentAssistSubjectControl.getDocument();\n\t\t\tString typ...
43adb0590daba97b56ed85c3e17eb248
TODO Autogenerated method stub App.debug("unimplemented method");
[ { "docid": "dfcd11adcb9399e10d7410e73a4b52c4", "score": "0.0", "text": "public boolean isInputFieldSelectionListener() {\n\t\treturn false;\n\t}", "title": "" } ]
[ { "docid": "ec76ff8d70ced9d8135ad33b23353b4d", "score": "0.7533383", "text": "@Override\r\n\t\t\tpublic void adelante() {\n\t\t\t\t\r\n\t\t\t}", "title": "" }, { "docid": "14f6250e215aa66dcffb123fd6b7fd74", "score": "0.73660195", "text": "@Override\n\tpublic void entzünden() {\n\n\t}...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "33208905e8b34feb4b06a65f9dc1fb77", "score": "0.0", "text": "@SuppressWarnings(\"static-access\")\n\t\t\t@Override\n\t\t\tpublic void onClick(View v) {\n\n\t\t\t\t((TextView) findViewById(R.id.txtView_st_result)).setText(\"\\n Waiting.............\");\n\n\t\t\t\tnew Handler() {\n\t\t\t\t\tp...
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "cdf542363f5b089e84183e3d9020935f", "score": "0.6697644", "text": "@Override\n\t protected void ramana() {\n\t\t\n\t}", "ti...
45f2fe9e627f626efe3164f712c5a674
/ / / / 751
[ { "docid": "1f176af8fb562d21411868b4d551b43f", "score": "0.0", "text": "public void setWaterProductId(String waterProductId) { this.waterProductId = waterProductId; }", "title": "" } ]
[ { "docid": "6ca40762b46fe5cd43ff6cb1a4e99ac7", "score": "0.5578301", "text": "public static int m5672aM(java.lang.String r7) {\n /*\n java.util.Locale r0 = java.util.Locale.US\n java.lang.String r7 = r7.toLowerCase(r0)\n int r0 = r7.hashCode()\n r1 = 16...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "54afe990a7a0a82579246e92889e3381", "score": "0.0", "text": "public static void main(String[] args) throws IOException, ParseException, SQLException {\n\t\t\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tHashMap<String, QTable> table_mapper = new Has...
[ { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n }", "title": "" }, { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "745155a90585d1e16008b43c3e195236", "score": "0.0", "text": "@Override\n public void onClick(View v) {\n TampilGambar.setImageResource(R.drawable.ud);\n TampilGambar.startAnimation(animScale);\n SuaraAlif.start();\n }", "t...
[ { "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}", ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "79ab3851a6244f5307a9b964cbb0334a", "score": "0.0", "text": "@Override\r\n\t\tpublic void mouseReleased(MouseEvent arg0) {\n\r\n\t\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "941cb2826e3c700358fcaba402e6bb01", "score": "0.66775143", "text": "@Override\r\n\tpublic void hissetmek() {\n\r\n\t}", "ti...
03006a4bab640a0aca631b969b82eb85
To click on Free "emagazine subscriptions" hyperlink.
[ { "docid": "2111c0786cdc3fac0ca6b62b1ddd7415", "score": "0.76454234", "text": "public static WebElement lnk_clickFreeEmagSubs() throws Exception{\r\n \ttry{\r\n \t\telement = driver.findElement(By.xpath(\"//*[contains(text(),'subscriptions')]\"));\r\n \t\tAdd_Log.info(\"User is click on Free 'e...
[ { "docid": "3b6f397f22fda0b093d9e360093748f9", "score": "0.68537194", "text": "public zoho clickSubscriptionsLink() {\n subscriptions.click();\n return this;\n }", "title": "" }, { "docid": "008565f01aae0effdec81c1b273ed35c", "score": "0.64244866", "text": "public vo...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "9d0bdda21e26582ffc977309effef571", "score": "0.0", "text": "@Override\n\tpublic void actionPerformed(ActionEvent arg0)\n\t{\n\t\t\n\t}", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.68399656", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "118f2b8a20f48999973063ac332d07d3", "score": "0.6563993", "text": "@Override\r\n\t\t\tpublic void atras() {\n\r\n\t\t\t}", ...
f5aaabb8f06b362fa98baaa72f771847
repeated .CSourceTVGameSmall live_games = 1;
[ { "docid": "7183b2f13e2763aabf83c4274c7c6208", "score": "0.5121086", "text": "public java.util.List<MsgGCClientWatch.CSourceTVGameSmall> getLiveGamesList() {\n if (liveGamesBuilder_ == null) {\n return java.util.Collections.unmodifiableList(liveGames_);\n } else {\n retur...
[ { "docid": "930f660a340789ce491a319cb48cf5b7", "score": "0.6693604", "text": "MsgGCClientWatch.CSourceTVGameSmall getLiveGames(int index);", "title": "" }, { "docid": "4552137180de9b00edeb91c9a3e7aa64", "score": "0.605077", "text": "void incrementGamesPlayed() {\n gamesPlayed ...
a295af9a936557e47a3062086bfac319
Changes the score of the item
[ { "docid": "e750aecd36a3f381030e535cfa77d081", "score": "0.75286025", "text": "public void setScore(double new_score) {\n score = new_score;\n }", "title": "" } ]
[ { "docid": "c16fef4d8a60c4d17ff40e36dc55072f", "score": "0.8130038", "text": "public void setScore(int newScore)\n {\n score=newScore;\n }", "title": "" }, { "docid": "cac4e1835384573b7b3cd2d64fe984b7", "score": "0.7960358", "text": "public void updateScore() {\n\t\tscor...
f6f794b4b62dcf4eae5e6eb500580250
.forge_abi.Transaction tx = 2;
[ { "docid": "96778abfecaacf51b1fc680ff7b4f7ae", "score": "0.0", "text": "public forge_abi.Type.TransactionOrBuilder getTxOrBuilder() {\n if (txBuilder_ != null) {\n return txBuilder_.getMessageOrBuilder();\n } else {\n return tx_ == null ?\n forge_abi.Type.Tra...
[ { "docid": "ee73536f4020f388f0473a9941e25177", "score": "0.8245552", "text": "forge_abi.Type.Transaction getTx();", "title": "" }, { "docid": "ee73536f4020f388f0473a9941e25177", "score": "0.8245552", "text": "forge_abi.Type.Transaction getTx();", "title": "" }, { "docid":...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "e95efc13d345f64a0bf9f8f6c8e546e5", "score": "0.0", "text": "@Override\r\n public byte[] getBuffer() {\n return mBuffer;\r\n }", "title": "" } ]
[ { "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...
f1c50b48336e1240528cfe474ec9724b
This method was generated by MyBatis Generator. This method corresponds to the database table ac_user_group_role
[ { "docid": "eecb45427c3daf72d07fe0ee5985edd4", "score": "0.0", "text": "@Override\n public String toString() {\n StringBuilder sb = new StringBuilder();\n sb.append(getClass().getSimpleName());\n sb.append(\" [\");\n sb.append(\"Hash = \").append(hashCode());\n sb.a...
[ { "docid": "c74879b47f93c53ea2cc4bfd91b18742", "score": "0.6384148", "text": "protected String getSqlTable() {\n\t\treturn \"LoginUserRoles\";\n\t}", "title": "" }, { "docid": "1ae603907b70ec4c11dddd25c586f750", "score": "0.6292284", "text": "@Override\n\tpublic String getTableName()...
2f75257ffeb2e7ebc08c3972562f69f5
Find by reference: attributeSet
[ { "docid": "e4e936ab36f9ebbf80e0eb265ce89560", "score": "0.0", "text": "public List<AttributeSetAttribute> findByAttributeSet(\r\n\t\t\tAttributeSet attributeSet) {\r\n\t\treturn this.findByAttributeSetId(attributeSet.getId());\r\n\t}", "title": "" } ]
[ { "docid": "fb6b46467539821020ddff048d76bdd1", "score": "0.62510645", "text": "QuerySetLookup getQuerySetLookup(TreeReference ref);", "title": "" }, { "docid": "653b95962c914c924e3a59af3b54f86d", "score": "0.6042412", "text": "List<? extends AttributeDeclaration> getFindEqualAttribut...
d8283ed3054cc8be1cbe8cfaa05da7b8
metodo que retorna los datos
[ { "docid": "4a2a6a3b33db2fd8837e1e467439a097", "score": "0.0", "text": "public long sueldoTotal(){\r\n sueldo = new Sueldo();\r\n long totalFinal = sueldo.calcular(getIdioma(), getDias(),getSalario(),getNombre() );\r\n return totalFinal;\r\n \r\n }", "title": "" } ]
[ { "docid": "66fed0482d183ac4da75a31b5a61d7ac", "score": "0.73082954", "text": "public ArrayList<Mascota> obtenerDatos(){\n BaseDatos db = new BaseDatos(context);\n insertarLasMascotas(db);\n //return mascotas;\n return db.ObtenerTodaslasMascotas();\n }", "title": "" ...
9ff304f7e514f47fa5d3952f621a5cdb
You must provide the four values below to initialize the helper.
[ { "docid": "59b5b152732243b15bd9ed7df3df9724", "score": "0.0", "text": "SignedRequestsHelper(final Endpoint endpoint, final String associateTag, final String awsAccessKeyId,\n\t\t\tfinal String awsSecretKey) throws NoSuchAlgorithmException, InvalidKeyException,\n\t\t\tUnsupportedEncodingException {\n\t\...
[ { "docid": "2ad52390d92954e1d6f2925b4b14bfd4", "score": "0.72923094", "text": "private Helpers() {}", "title": "" }, { "docid": "7a5938c7c0e4137d168d0dc91cfef32b", "score": "0.71428245", "text": "public Helper() {\n \t\n }", "title": "" }, { "docid": "1d7627a3d6256d...
2a420406a8cdf7a9e63e8f10717baacf
Used by unit tests
[ { "docid": "6f88a35f9b5a54acbd7580e508cd93c6", "score": "0.0", "text": "@VisibleForTesting\n public TXRegionLockRequestImpl(String regionPath, Set<Object> entryKeys) {\n this.cache = null;\n this.regionPath = regionPath;\n this.entryKeys = entryKeys;\n }", "title": "" } ]
[ { "docid": "82700e67af9fd6ad545fb593e13130d2", "score": "0.6560066", "text": "protected void setup() {}", "title": "" }, { "docid": "e6b03f8c5df6ede5fe40bccb28f5ddb9", "score": "0.6354832", "text": "private Tests() {\n\t\t\n\t}", "title": "" }, { "docid": "dea7c0ddf34edf6...
cfeb55afcdeed3441d6b0850499a208d
Creates a nicelyformatted textual presentation of an airline's flights or prints it to the standard output.
[ { "docid": "f9eb7e6c8e0ecb69200086e45deebd11", "score": "0.641011", "text": "public void dump(Airline airline) throws IOException {\n err = new PrintWriter(System.err, true);\n\n if(airline == null) {\n System.err.println(\"Airline does not exist. Error saving it into the file!\...
[ { "docid": "a7afe32ca3f479e6b2c181fa129996ca", "score": "0.67335856", "text": "public String viewPlaneLayout()\n\t{\n\t\tStringBuilder plane = new StringBuilder();\n\t\t\n\t\tplane.append(\"Flight ID number: \" + flightID);\n\t\tplane.append(\"\\nDeparture Date: \" + departureDate);\n\t\tfor(int i = 0; ...
2c40558a672d3e782e72ffa5eed29bec
Instantiates a new book store response.
[ { "docid": "209f169133601f6461fd1f2da6006558", "score": "0.7324543", "text": "public BookStoreResponse() {\n\t\tthis.setException(null);\n\t\tthis.setList(null);\n\t}", "title": "" } ]
[ { "docid": "257e1a94c936bee7a179864c71c72746", "score": "0.5797851", "text": "public NewsResponse() {\n }", "title": "" }, { "docid": "7d25c7b9efc0670083a847ce813331cd", "score": "0.57800597", "text": "public BindrBook()\r\n {\r\n makeBook();\r\n }", "title": "" }, { ...
970e393804f08a0eafa26eabb82abf8e
in my travels, I have found that at times, GObjects are not added to the canvas until the whole method at hand is finished running. In this particular case, the GLabel added by actionPerformed doesn't get added until that method is finished. For this reason, I needed a way to have something happen immediately after thi...
[ { "docid": "216f353ead62409cb57e0fc41876fead", "score": "0.6174222", "text": "public void run(){\n\t\twhile(true){ //while true loop so that we are constantly checking if to do something.\n\t\t\tif(!boo){\n\t\t\t\tSystem.out.print(\"\"); //I don't know why this is needed. For some reason, the code doesn...
[ { "docid": "018b7f1c8bae6bff2c057c05694e3f3d", "score": "0.60727537", "text": "public void actionPerformed(ActionEvent e) {\n \t check();\n \t}", "title": "" }, { "docid": "3ec28d71b2769abf259d0c9ad78dc7bf", "score": "0.60606444", "text": "public void actionPerformed( ActionEvent ...
a48ba8b99f455b737f9cd12de034e967
Swaps two columns in a matrix, the original >IS (not) altered<
[ { "docid": "1b6fd00611dbbe5b1dd10f2b22c0c966", "score": "0.6515823", "text": "public static Matrix swapColumns(Matrix A, int col1, int col2) {\n return new MatrixBuilder(A, true)\n .swapColumns(col1, col2)\n .build();\n }", "title": "" } ]
[ { "docid": "97a9975f745caef79b097d61e3e7e6a8", "score": "0.73571336", "text": "public void swapColumns( int c1, int c2 )\n {//O(n) Reads both once\n c1--; c2--;\n Object temp;\n for (int i = 0; i < matrix.length; i++) {\n temp = matrix[i][c1];\n matrix[i][c1] = matrix[i][c2];\n ...